Quote:
Originally Posted by Karellen
Oops. Missed this last line. Thought it was part of your signature.
Try...
PHP Code:
>\p{P}+(\d+)\p{P}+<
|
So, this is similar to the second problem i ran into my sample regex. Namely, it'll match ANY string (repeated or not) with a nested number. eg:
Code:
<p class="lorem">_._--__8..----</p>
I'm trying to only find numbers nested between a
repeated character, not numbers nested between
any characters.