TheColumnDelimiter

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

Fetches the columnDelimiter property from script context

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

Fetches the calling (script) handler's columnDelimiter property, or horizontal tab (U+0009) if no script context is available.

Tagsengine,script engine