Hello Everyone,
I know it is here in the forum, but I can't seem to find it. I haven't done this in a while so I don't remember. I just need to know how to make a group non-capturing.
Thanks for the help.
Non-Capturing Group (RegEx)
Moderators: JRL, Dorian (MJT support)
Non-Capturing Group (RegEx)
Windows 7
PepsiHog. Yep! I drink LOTS of Pepsi (still..in 2024) AND enjoy programming. (That's my little piece of heaven!)
The immensity of the scope of possibilities within Macro Scheduler pushes the user beyond just macros!
PepsiHog. Yep! I drink LOTS of Pepsi (still..in 2024) AND enjoy programming. (That's my little piece of heaven!)
The immensity of the scope of possibilities within Macro Scheduler pushes the user beyond just macros!
Re: Non-Capturing Group (RegEx)
I just saw this unanswered post from 2 years ago. In the unlikely event it has not been solved. To make a group non-capturing, just add ?:
Capturing: (\d+)
Non-capturing: (?:\d+)
Capturing: (\d+)
Non-capturing: (?:\d+)