Text parser: multiple named groups in single bundle

Highly recommend you read up on Regular Expressions first.

When you say “exact match” on the full string you’ll need to define some sort of pattern you want to match that is not exact and then encode that into the regular expression. The missing and different order all use modifiers like ? or look ahead/behind modifiers and make for a more complex string. If you need help share what you have and one of the regex geeks will jump in.

2 Likes