StrEnd (Kernel)

StrEnd(text)

Returns a pointer to the end of the string.

Parameters:text (string) – The string.
Returns:A pointer to the end of text.

Example:

(procedure (SomeFunc &tmp [aString 20] strPtr)
        (StrCpy aString "Hello World")
        (= strPtr (StrEnd @aString))
)