IUserAccessiablestringSplit Method |
Split the string inString into several pieces, separated by inSeperator. all instances of inSeperator are removed.
Namespace: SurveyToGo.UserLogic.InterfacesAssembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax 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:
StringString array type
Examples
stringSplit("Good morning!", "n") will return a string array containing 3 strings: "Good mor", "i", "g!".
See Also