我在变量 tLine 中有一个字符串。
例子
156 \zEntry lx ge ....
我想检索以 \zEntry 开头的子字符串。
用户指南的第 6.2.7 章是关于检索匹配块的位置
所以我愿意
get offset("\zEntry",tLine)
put it into tCharStartPosition
put the number of chars of tLine into tLength
put char tCharStartPosition to tLength of tLine into tResultingSubstring
我认为有更简单的方法可以做到这一点?他们看起来怎么样?