Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

The # 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 and use the annotation window to see the results:

local myString = "Hello, World!"
local stringLength = #myString

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

See related:

  • No labels