在proxomitron里面,我们跟本不用关于标签里嵌套几个相同的标签. 我们可以用NEST界定一个标签, 就不会出现匹配错误. 而有PRIVOCY里面,则没有这方面的设置. 如果有个table,
<table some attrubutes here>
<tr>
<td>
<table>
</table>
</td>
</tr>
</table>
在privocy 里面,我们可以这样写规则 <table some attrubutes here>* 这样,就可以自动匹配到 最后一个</table> 不会配错. 而在privocy里面, 我们这样写的话, 会配到文件尾, 就算写成这样
<table some attrubutes here>.*?</table> 也只会匹配到第一个</table> 处. 这样就破坏了表格.
要整个表格匹配, 要这样写
<table some attrubutes here>.*?</table>.*?</table>
如果表格嵌套得多的话,就要去数有几个表格? 累死...
呵, 不知道PRIVOCY里面是否有相应的解决方案.
--
Feng
没有评论:
发表评论