I have a string in a variable tLine.
Example
156 \zEntry lx ge ....
I would like to retrieve the substring starting with \zEntry.
Chapter 6.2.7 of the User's Guide is about Retrieving the Position of a Matching Chunk
So I do
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
I assume there are simpler ways to do this? How do they look like?