Software AG Products 10.7 | Integrating On-Premises and Cloud Applications | Integration Server Built-In Services | String Folder | Summary of Elements in this Folder | pub.string:tokenize
 
pub.string:tokenize
WmPublic. Tokenizes a string using specified delimiter characters and generates a String List from the resulting tokens.
This service does not return delimiters as tokens.
Input Parameters
inString
String String you want to tokenize (that is, break into delimited chunks).
delim
String Delimiter characters. If null or empty, the service uses the default delimiters \t\n\r, where t, n, and r represent the white space characters tab, new line, and carriage return).
useRegex
Boolean Optional
*If the value is set to true, Integration Server supports recognizing the delimiter character set for the delim parameter as a regular expression.
*If the value is set to false, Integration Server considers the delimiter character set for the delim parameter as an individual character. This is the default.
Output Parameters
valueList
String List Strings containing the tokens extracted from inString.