How to collect text between <a....> and </a>?
Posted: Sun Dec 13, 2009 7:47 am
Hello!
I have such code
I want string "Text: here, there and there and so on"
Expressios like
and selection 2,4,6,7 and capture to variables
produce errors like
"The recursion and backtracking limit has been exceeded. Rewrite the pattern"
And what if more or less links (from 1 то 3) (random) in needed block?
I have such code
Code: Select all
<td class='text3 bold'>Some_text:</td>
<td class="text2">Text: <a ....>here,</a> there <a....>and there</a>and so on</td>
Expressios like
Code: Select all
<td class='text3 bold'>Some_text:</td>(.*)<td class="text2">(.*)<a(.*)>(.*)</a>, <a(.*)>(.*)</a>(.*)</td>
produce errors like
"The recursion and backtracking limit has been exceeded. Rewrite the pattern"
And what if more or less links (from 1 то 3) (random) in needed block?