Functions15 public, 0 private
| Appends the specified value to the provided list. The delimiter may contain multiple characters. | |||
| public | string | listAppend | |
| required | any | list | |
| required | string | value | |
| string | delimiter | , | |
| Deletes the specified (simple) value in the provided list. Returns the (modified) list regardless of the result. | |||
| public | string | listDeleteValue | |
| required | string | list | |
| required | string | value | |
| string | delimiters | , | |
| Deletes the specified (simple) value in the provided list. Returns the (modified) list regardless of the result. | |||
| public | string | listDeleteValueNoCase | |
| required | string | list | |
| required | string | value | |
| string | delimiters | , | |
| Compares the provided lists with each other (case sensitive) and returns a list with elements not appearing in both lists. | |||
| public | string | listDifference | |
| required | string | list1 | |
| required | string | list2 | |
| string | delimiters1 | , | |
| string | delimiters2 | , | |
| Delimiter used in the resulting list. | |||
| string | delimiters3 | , | |
| Compares the provided lists with each other (case insensitive) and returns a list with elements not appearing in both lists. | |||
| public | string | listDifferenceNoCase | |
| required | string | list1 | |
| required | string | list2 | |
| string | delimiters1 | , | |
| string | delimiters2 | , | |
| Delimiter used in the resulting list. | |||
| string | delimiters3 | , | |
| Wrapper for native [listFirst] function to add support for [multiCharacterDelimiter] argument. | |||
| public | string | listFirst | |
| required | string | list | |
| string | delimiters | , | |
| boolean | includeEmptyValues | false | |
| boolean | multiCharacterDelimiter | false | |
| Wrapper for native [listLast] function to add support for [multiCharacterDelimiter] argument. | |||
| public | string | listLast | |
| required | string | list | |
| string | delimiters | , | |
| boolean | includeEmptyValues | false | |
| boolean | multiCharacterDelimiter | false | |
| Returns the n-th element of the provided list. | |||
| public | string | listLeft | |
| required | string | list | |
| required | numeric | position | |
| string | delimiters | , | |
| boolean | includeEmptyValues | true | |
| Wrapper for native [listLen] function to add support for [multiCharacterDelimiter] argument. | |||
| public | numeric | listLen | |
| required | string | list | |
| string | delimiters | , | |
| boolean | includeEmptyValues | false | |
| boolean | multiCharacterDelimiter | false | |
| Returns the n-th element of the provided list. | |||
| public | string | listRight | |
| required | string | list | |
| required | numeric | position | |
| string | delimiters | , | |
| boolean | includeEmptyValues | true | |
| Shrinks the provided list by removing entries based on the specified method. | |||
| public | string | listShrink | |
| List to shrink. | |||
| required | string | list | |
| Desired maximum size of the resulting list. | |||
| required | numeric | size | |
| "LAST", "RANDOM" | method | LAST | |
| Delimiters used to separate items in the list. | |||
| string | delimiters | , | |
| Treat empty values as list items. | |||
| boolean | includeEmptyValues | false | |
| Treat delimiters argument as a single delimiter. | |||
| boolean | multiCharacterDelimiter | false | |
| Prepends the specified value to the provided list. The delimiter may contain multiple characters. | |||
| public | string | listPrepend | |
| required | any | list | |
| required | string | value | |
| string | delimiter | , | |
| Removes duplicate elements from the provided list. | |||
| public | string | listRemoveDuplicates | |
| required | string | list | |
| string | delimiter | , | |
| boolean | ignoreCase | false | |
| Removes the first item in the provided list. | |||
| public | string | listRemoveFirst | |
| The list to remove the last item in. | |||
| required | string | list | |
| Delimiters used to separate items in the list. | |||
| string | delimiters | , | |
| Treat empty values as list items. | |||
| boolean | includeEmptyValues | false | |
| Treat delimiters argument as a single delimiter. | |||
| boolean | multiCharacterDelimiter | false | |
| Removes the last item in the provided list. | |||
| public | string | listRemoveLast | |
| The list to remove the last item in. | |||
| required | string | list | |
| Delimiters used to separate items in the list. | |||
| string | delimiters | , | |
| Treat empty values as list items. | |||
| boolean | includeEmptyValues | false | |
| Treat delimiters argument as a single delimiter. | |||
| boolean | multiCharacterDelimiter | false | |