Example: regular expression ignore errors

You can avoid number formatting mistakes on ISO codes like ISO 4217 by adding the expression ISO\s\d+ and selecting the Number formatting check box in the Ignore errors of type section.

Description:
  • The sequence ISO matches the literal characters ISO.
  • \s represents a white space, so in this case a normal or hard space.
  • \d+ represents a digit sequence.