This documentation is archived and is not being maintained.
Global::strSplit Method [AX 2012]
Splits a string into a list of substrings delimited by elements in the specified delimiter string.
client server public static List strSplit(str _stringToSplit, str _delimiters)
Run On
Called
Parameters
-
_stringToSplit
- Type: str
The string to split into a list.
-
_delimiters
- Type: str
A string of delimiter characters.
Return Value
Type:
List Class
A list of substrings from the _stringToSplit parameter.
Each character in the _delimiter string is used to split the _stringToSplit parameter.