Product Update
String Manipulation Operators for Automation Rules
A whole new set of operators have become available that makes it possible to create Automation Rules that manipulate strings of characters.
The new operators are:
size, length
โ returns the number of characters in stringstrip
โ removes leading and trailing white spacessqueeze
โ removes double spacesreverse
โ flips the characters aroundupcase
โ forces all characters to uppercasedowncase
โ forces all characters to lowercaseswapcase
โ switches lower case to capitals and vice versaempty?, blank?
โ true when string is empty or only contains white spacespresent?
โ true if string contains characters other than white spacessplit()
โ splits the string into an array of strings on the separator. Separator can be a quoted string, such as โ โ or a regular expression such as /[,|]/.slice(, )
โ takes a part of the string, start-index is mandatory, if length is omitted all characters from the start till the end of the string are returnedreplace(, )
โ replaces a string or regular expression with a quoted string
Examples of how these new operators can be used in expressions can be found in the online help for Automation Rule Operators under the header โString Manipulationโ.
Administrator who have already been making use of Xurrentโs support for SCIM will probably find these new operators very helpful. ย ย