$list from text
From UBot Studio
(Difference between revisions)
(Created page with "list from text is a Variable Function. This function returns a list of items by separating the text into separate items based on a delimiter == Examp...") |
|||
Line 1: | Line 1: | ||
list from text is a [[Variable Functions|Variable Function]]. | list from text is a [[Variable Functions|Variable Function]]. | ||
− | This function returns a list of items by separating the text into separate items based on a delimiter | + | This function returns a list of items by separating the text into separate items based on a delimiter. Unlike the list from file function which needs a file to populate a list, this function allows you to type in your list items and designate a delimiter that sets each list item apart. |
== Example == | == Example == |
Revision as of 19:47, 15 October 2012
list from text is a Variable Function.
This function returns a list of items by separating the text into separate items based on a delimiter. Unlike the list from file function which needs a file to populate a list, this function allows you to type in your list items and designate a delimiter that sets each list item apart.
Example
add list to list(%my list, $list from text("list item 1, list item 2,list item 3, list item 4,list item 5,list item 6", ","), "Delete", "Global")
The delimiter is the comma. The list from text function will treat each word separated by a comma as a list item.
Running the command and checking the debugger shows that each word has been designated as it's own list item.
The random list item and the next list item function can then be used to fill fields with the list items.