set randomString to "this is a random string"
由于某些原因
set firstWord to the first word of randomString
set isThereTruth to firstWord = "this"
display dialog isThereTruth
返回 true 但
repeat with x in words of randomString
display dialog x
set isThisTruth to x = "this"
display dialog isThisTruth
end repeat
返回假
我对applescript很陌生,很抱歉这个愚蠢的问题,但是很难找到答案,也许其他人也遇到了这个问题。
我尝试测试以确保(尽管我无法想象为什么它不会是)该变量是一个字符串,但我很确定我测试变量类型的方法为什么不能真正起作用。