记事本++查找并替换字符串

发布于 2024-12-11 16:13:35 字数 374 浏览 0 评论 0原文

我有大约 1,000 行,全部看起来像这样:

<a href="#" onclick="MM_openBrWindow('this-part-varies.html','','width=270px,height=295px,top=150px,left=250px')"><img src="../images/image.jpg"/>

我需要找到每一行,并删除从“#”到“../images”的所有内容。

唯一变化的部分是“this-part-varies”文件名 。

人来说这是一个简单的正则表达式行

我确信对于在 windows xp sp3 上使用 notepad++ 5.9.3 的

I have about 1,000 lines that all look like this:

<a href="#" onclick="MM_openBrWindow('this-part-varies.html','','width=270px,height=295px,top=150px,left=250px')"><img src="../images/image.jpg"/>

and I need to find each of these, and delete everything from "#" to "../images.

The only part that varies is the 'this-part-varies' file name.

I'm sure it's a simple regex line for some one out there!

Using notepad++ 5.9.3 on windows xp sp3.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

左岸枫 2024-12-18 16:13:35
#" onclick="MM_openBrWindow('.+\.html','','width=270px,height=295px,top=150px,left=250px')"><img src="

我想就是这样。

#" onclick="MM_openBrWindow('.+\.html','','width=270px,height=295px,top=150px,left=250px')"><img src="

I think that's it.

空‖城人不在 2024-12-18 16:13:35

将此替换

  #".*"\.\./images

为任何内容

Replace this

  #".*"\.\./images

with nothing

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文