RegEx useful links

Sam Kenny
Sam Kenny’s a(musing)
1 min readMay 11, 2013

Good site to strip strings within a large chunk of text. Used this to find references to .png files on a Confluence page for the Publishing Team at C12 Capital. This was the pattern: [0–9]-[0–9]-2013 [0–9]-[0–9][0–9]-[0–9][0–9] PM.png

In a regular expression, round brackets can be used to group regex tokens together and for creating backreferences. Back-references allow you to reuse part of the regex match in the regex, or in the replacement text.

Another regex tester.

--

--