Quote:
Originally Posted by mrmikel
The brackets are part of regex. To make them a literal character use \ in front of them.
<p>\[\d+\]</p>
Or <p>\[(.+?)\]</p> to remove any thing with brackets around it.
That is my guess. I am not a regex guru.
|
To me, you are a regex guru! <p>\[(.+?)\]</p> worked. Phew! That felt good, like trimming a hedge...
Thanks!