This function takes a String that contains a number of substrings, breaks it up into a specified number of substrings and returns an array containing the substrings.
Overloads
Parameters
Return value
Array of String values.
Examples
Assume that inString = "Welcome use JReport"
StringSplit(inString) - Returns [ "Welcome", "use", "JReport"]StringSplit(inString, "use") - Returns [ "Welcome", "JReport"]StringSplit(inString, " ", 2) - Returns [ "Welcome", "use JReport"]Note: If count, c, is less than the total number of substrings in inString, then at most c substrings will be returned as elements in the resultant array. The last element in the array is a concatenation of the substring and all the remaining substrings.