Class RegularExpression

java.lang.Object
com.aquima.interactions.framework.mask.impl.AbstractMask
com.aquima.interactions.framework.mask.impl.RegularExpression
All Implemented Interfaces:
IMask

public class RegularExpression extends AbstractMask
Mask which replaces each substring of a string value that matches a given regular expression with the given replacement.

Example: StringValue("571518833") -> 57.15.18.833

Required parameters:
  • regexp-search: regular expression used for search
  • replace: string to replace with
Optional parameters:
  • toupper: true/false Apply to upper case BEFORE regular expression is evaluated (default=false).
  • tolower: true/false Apply to lower case BEFORE regular expression is evaluated (default=false).
Since:
6.0
Author:
Jon van Leuven
  • Constructor Details

    • RegularExpression

      public RegularExpression()
  • Method Details