Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The # Operator operator works on strings, tables and our HL7/X12 objects.

With strings, the # operator is used to get the length or number of characters of a string.

Try out this sample code in the Translator:

Code Block
languagelua
local myString = "Hello, World!"
local stringLength = #myString

trace("Length of the string: "..stringLength)

Use the Annotation Window to see the # operator capture the string length.

...

See related: