M
Matthias S.
hello,
I've got the following regexpression:
"<span .*bbc_underline.*>(.*)</span>"
and the following input string:
"this <span class="bbc_underline">is underlined <span
class="bbc_strikethrough">and striked through</span>text.</span>"
when I do a replace on the expression, I get the following result:
"this text."
I'm quite new to regular expressions. the goal in the expression above is to
yield the following result:
"this is underlinedand striked throughtest."
but somehow, the first expression eats up more then it should. btw, I don't
know if or what is nested. I just have a couple of span's with given
classes, that will "turn into" square brackets. can somebody please help? A
ton of thanks in advance.
Matthias
I've got the following regexpression:
"<span .*bbc_underline.*>(.*)</span>"
and the following input string:
"this <span class="bbc_underline">is underlined <span
class="bbc_strikethrough">and striked through</span>text.</span>"
when I do a replace on the expression, I get the following result:
"this text."
I'm quite new to regular expressions. the goal in the expression above is to
yield the following result:
"this is underlined
but somehow, the first expression eats up more then it should. btw, I don't
know if or what is nested. I just have a couple of span's with given
classes, that will "turn into" square brackets. can somebody please help? A
ton of thanks in advance.
Matthias