For anyone wishing to test out any regular expressions, I recommend https://regex101.com/
LabVIEW uses perl compatible regular expressions (PCRE), which is the default on that site.
It is possible to craft very inefficient regex searches, or even ones that cause endless loops, so my advice would be to make an effort to understand what the various parameters in the regex actually do (especially for a regex provided by someone else).
0xDEAD