RulePoint
- RulePoint 6.1
- All Products
parse(text, delimiter)
Argument
| Required
Optional
| Description
|
---|---|---|
text
| Required
| The text that contains the delimiter.
|
delimiter
| Required
| The delimiter that is used to split the text.
|
Parameter Input Options
| Datatype
|
---|---|
Event property
| Real number
|
when 1 presenter p with parse(p.greetings,” ,”) as result !=”” then response with body="${result}”
Event Property Value
| Description
| Result
|
---|---|---|
p.greetings="HELLO,WORLD"
| Splits Hello,World into two values using the delimiter.
| Hello World
|