strCut(text,delim,fieldList)¶
Definition¶
String strCut(String text, String delim, String fieldList)
Description¶
Splits the line into a list using the supplied delimiter and returns those fields listed by position. Returns the joined strings using the supplied delim.
Parameter Definition¶
Name | Type | Description |
---|---|---|
text | String | The string to split |
delim | String | delimiter, literal not a pattern |
fieldList | String | fields to return, Can use n-m for range; n,m,... for individual fields or -n for first number or n- for last n entries |