Parses the string for a list of integer values.
public static int[] parseIntList( String s )
public static int[] parseIntList( String s, char token )
s
The string to parse.
token
The token to search for.
Returns the array of integer values found in the string.
In the first syntax, the integer values must be separated by the list character as determined by the region settings. This is typically a comma (,). In the second syntax, the values must be separated by the token parameter.