commonCharactersToIgnore property

String? commonCharactersToIgnore
getter/setter pair

Common characters to not transform when masking.

Useful to avoid removing punctuation. Possible string values are:

  • "COMMON_CHARS_TO_IGNORE_UNSPECIFIED" : Unused.
  • "NUMERIC" : 0-9
  • "ALPHA_UPPER_CASE" : A-Z
  • "ALPHA_LOWER_CASE" : a-z
  • "PUNCTUATION" : US Punctuation, one of !"#$%&'()*+,-./:;<=>?@[]^_`{|}~
  • "WHITESPACE" : Whitespace character, one of [ \t\n\x0B\f\r]

Implementation

core.String? commonCharactersToIgnore;