Quote:
Originally Posted by ElMiko
I'm trying to only find numbers nested between a repeated character, not numbers nested between any characters.
|
I think I understand what you need.
Code:
<p[^>]*>.*?(.).*?\d+.*?\1.*?</p>
IMHO, the key is to use
\1 in the search to indicate that you need a part that has already appeared before the number.