如何找到带空格的单词(例如:我想找一个单词“X1 X2 X3”)。我使用以下代码
put the text of field "f4" into xx
find xx in field "f1"
答案 0 :(得分:1)
在LiveCode中,空格字符分隔单词 - 单个单词不包含空格。如果您只搜索一个字符串的一个实例,则可以使用偏移功能:
put "X1 X2 X3" into theString
put the text of fld "f4" into temp
put offset(theString,temp) into theNum
变量theNum将包含字符串第一个字符前的字符数,或者如果在字段文本中找不到该字符串则包含0。