用户指南章节 6.1.5单词块单词是由空格、制表符或返回字符分隔或用双引号括起来的字符串。是否可以有额外的单词分隔符?
我有以下代码片段取自用户指南第 6.5.1 章“何时使用数组”,p。184
on mouseUp
--cycle through each word adding each instance to an array
repeat for each word tWord in field "sample text"
add 1 to tWordCount[tWord]
end repeat
-- combine the array into text
combine tWordCount using return and comma
answer tWordCount
end mouseUp
它计算“示例文本”字段中每个单词形式的出现次数。
我意识到单词后的句号被计为默认设置的单词的一部分。
如何更改将句号(和,或逗号)视为单词边界的设置?