我正在搜索正则表达式以查找文本中最后出现的空格,但我不想从 HTML 标记中查找空格。
"This is a string with <strong>some</strong> html in it"
正则表达式应该找到的空间是 和 之间的in
空间it
。那个正则表达式并不难。相同的正则表达式也可以在这里工作:
"This is a string with <strong>some</strong> html in <a href="">the end</a>"
空格现在将位于和之间的 HTML 中the
(end
好的!)
但是当我的字符串是:
"This is a string with <strong>some</strong> html in the <a href="">end</a>"
那么空格应该在 and 之间the
而<a
不是<a
and之间href="">end<a>
。
有人有什么想法吗?