RulePoint
- RulePoint 6.1.2
- All Products
clean(text1,[text2],..)
Argument
| Required
Optional
| Description
|
---|---|---|
text1
| Required
| Removes all nonprintable characters from the text parameter.
|
text2, ...
| Optional
| Removes all nonprintable characters from the text.
|
Parameter Input Options
| Datatype
|
---|---|
Event property
| text
|
Watchlist values
| text
|
when 1 stocktopic s with clean(s.text) as result = “Testing” then response with body=" ${result}"
Event Property Value
| Description
| Result
|
---|---|---|
=CHAR(27)&"Testing"&CHAR(28)
| Removes the nonprintable characters from the text string.
| Testing
|