Click or drag to resize
IUserAccessiablestringSplit Method
Split the string inString into several pieces, separated by inSeperator. all instances of inSeperator are removed.

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
string[] stringSplit(
	string inString,
	string inSeperator
)

Parameters

inString
Type: SystemString
string to split
inSeperator
Type: SystemString
sub-string of inString, to remove all its instances from inString and split it by that

Return Value

Type: String
String array type
Examples
stringSplit("Good morning!", "n") will return a string array containing 3 strings: "Good mor", "i", "g!".
See Also