TheLineDelimiter

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

Fetches the lineDelimiter property from script context

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

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

Tagsengine,script engine