Skip to content

SplitString Function

Nilesh Ghodekar edited this page Jan 8, 2016 · 2 revisions

Syntax

List<string> SplitString(input:string, separator:string, [count:integer])

Description

Splits the string into substring delimited by the specified separator.

Remarks

If the first input parameter (input string) is null, an exception is thrown. If the second input parameter (separator) is null, white-space characters are assumed to be the delimiters. If the count parameter is zero, an empty list is returned.

Supported Version

2.14.611.0 and later

Examples

SplitString([//Target/ADDN],",OU=")

Clone this wiki locally