WIDTHOF Operator [STRING]
The WIDTHOF operator returns the width of its operand in bytes. This is the same as the number of characters if the text is purely ASCII, but may be greater than than the number of characters if the string contains UTF-8 characters.
STRING s := "hello"; PRINT(WIDTHOF(s), "\n");
Output:
5
XJTAG v4.2.5
