Application.SplitArgs Method

SharePoint Designer Developer Reference

Returns a Variant that represents an array of the individual items in the specified string separated by the specified character string.

Syntax

expression.SplitArgs(String, Tokens)

expression   Required. A variable that represents an Application object.

Parameters

Name Required/Optional Data Type Description
String Required String The string containing the data.
Tokens Required String The character string that separates the items in the String parameter.

Return Value
Variant

Remarks

The SplitArgs method is similar to the Split function in Microsoft Visual Basic; however, the SplitArgs method will not break quote-delimited strings.

See Also