TheRowDelimiter

Typeexpression
DictionaryLCB
LibraryLiveCode Builder
Syntax
the row delimiter
Associationscom.livecode.engine
Summary

Fetches the rowDelimiter property from script context

Example
  -- 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"]
RelatedExpression: TheColumnDelimiter, TheItemDelimiter, TheLineDelimiter
Description

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

Tagsengine,script engine