BIGenerator::split Method [AX 2012]

Splits a string into a string array by using the specified value as a delimiter.

NoteNote

The syntax of this method varies based on the version of Microsoft Dynamics AX that you are using.


  Microsoft Dynamics AX 2012 R3
          client server public static Array split(str string, [str delimeter])

  Microsoft Dynamics AX 2012 R2 (SYS)
          client server public static Array split(str string, [str delimeter])

  Microsoft Dynamics AX 2012 Feature Pack (SYS)
          client public static Array split(str string, [str delimeter])

  Microsoft Dynamics AX 2012 (FPK)
          client public static Array split(str string, [str delimeter])

  Microsoft Dynamics AX 2012 (SYS)
          client public static Array split(str string, [str delimeter])

Run On

Called

Parameters

string
Type: str
The string to split.
delimeter
Type: str
The string to use as the delimiter; optional.

Return Value

Type: Array Class
A string array.
Show: