如果我需要替换文字
<p>
this text including the paragraph needs to be replaced
</p>
如何使用VS2008“搜索和替换”来完成此操作?
修改
一种方法是使用Daniel建议的正则表达式。它非常复杂。最后的真正的搜索表现是:
\<div id="searchStore"\>\n[^\<]*\<[^\>]*\>\n[^\<]*\<[^\>]*\>
对于像我们这样的简单志同道合的人来说很多。
答案 0 :(得分:2)
选中“搜索/替换”对话框中的“使用正则表达式”复选框,然后创建一个正则表达式以匹配您需要的内容。
(<p>\r\nthis text including the paragraph needs to be replaced\r\n</p>)
会与你的例子相符。