Example: regular expression pattern match

The following string represents a word in capital letters with two letters or more: \b[A-Z]{2,}\b

Description:

  • \b represents a word boundary
  • [A-Z] represents a capital letter
  • {2,} represents two or more occurrences of any capital letter

If you create a normal regular expression and select the Case sensitive and the Pattern is found in source and not in target check box, you can run a check to see if all the words in capitals have been left untranslated.