我正试图通过搜索功能用excel doc替换excel doc中的html强文本。
我试过这个正则表达式但没有成功:
(?<=\<strong\>).+?(?=\<\/strong\>)
这是我的示例文字:
<strong>APPLE</strong>
这将是我的结果:
||apple||
非常感谢
答案 0 :(得分:0)
为什么不直接使用替换?
Replace(Replace("<strong>APPLE</strong>","<strong>","||"),"</strong>","||")