Global::strSplit Method [AX 2012]

Splits a string into a list of substrings delimited by elements in the specified delimiter string.

Syntax

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.

Remarks

Each character in the _delimiter string is used to split the _stringToSplit parameter.

See Also

Reference

Global Class