TheLineDelimiter
Type
expression
Summary
Fetches the lineDelimiter
property from script context
Syntax
the line delimiter
Description
Fetches the calling (script) handler's lineDelimiter
property, or linefeed
(U+000A) if no script context is available.
Examples
-- Split a string into a list using the line delimiter
variable tItems
put "alice\nbob\neve" into tItems
split tItems by the line delimiter
-- tItems is now a list: ["alice", "bob", "eve"]
Related
expression: TheColumnDelimiter, TheItemDelimiter, TheRowDelimiter