List of expression elements / Character string operators |
The LSTR() operator returns a localized string.
LSTR(str-expr)
The LSTR() operator returns a localized string corresponding to the identifier passed as parameter.
Normally localized strings are automatically replaced when using the %"ident" notation in the source code. When the localized string identifier is not known at compile time, use the LSTR() function.
MAIN DISPLAY LSTR ("str"||123) -- loads string 'str123' END MAIN