Skip to main content

TheRowDelimiter

Type

expression

Summary

Fetches the rowDelimiter property from script context

Syntax

the row delimiter

Description

Fetches the calling (script) handler's rowDelimiter property, or linefeed (U+000A) if no script context is available.

Examples

  -- Split a string into a list using the row delimiter
variable tItems
put "alice\nbob\neve" into tItems
split tItems by the row delimiter
-- tItems is now a list: ["alice", "bob", "eve"]

expression: TheColumnDelimiter, TheItemDelimiter, TheLineDelimiter

Thank you for your feedback!

Was this page helpful?