Parses a string into words and returns the number of words found and places the words in an array.
| Category: | String |
| Returned data type: | Integer |
specifies the string that needs to be separated into words; this can be specified as fixed string, field name, or expression
| Restriction | string should not be NULL, it causes a run-time error. |
| Note | If string is empty (""), a value of 1 is returned and word_list has one element that contains an empty string. |
specifies a string that contains the character to be used as delimiter when separating the string into words; this can be specified as fixed string, field name, or expression
| Restriction | If multiple characters are specified, only the last character is used. |
specifies a string array that contains the words that were found during parsing; this is specified as a field name