TheItemDelimiter

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

Fetches the itemDelimiter property from script context

Example
  -- Split a string into a list using the item delimiter
   variable tItems
   put "alice,bob,eve" into tItems
   split tItems by the item delimiter
   -- tItems is now a list: ["alice", "bob", "eve"]
RelatedExpression: TheColumnDelimiter, TheLineDelimiter, TheRowDelimiter
Description

Fetches the calling (script) handler's itemDelimiter property, or the comma char if no script context is available.

Tagsengine,script engine