Avoid unnecessary capturing groups to reduce memory consumption

We come across so many examples of regular expressions on the internet that promote unnecessary capturing groups. If we are not extracting any substring or not using a group in backreferences, then it is better to avoid capturing groups by using one or more of the following ways:

  1. We can use character classes in certain cases. Consider the following capturing group:
      (a|e|i|o|u) 

So, instead of using the preceding regex, we can use the following:

      [aeiou]
  1. We can use a non-capturing group by placing a ?: at the start of the group. Consider the following regex:
      (red|blue|white) 

Instead of the previous regex, we can use the following:

      (?:red|blue|white) 
  1. To write a regex ...

Get Java 9 Regular Expressions now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.