用于选择包含 HTML 类的整行的正则表达式

发布于 11-08 18:00 字数 282 浏览 4 评论 0原文

我正在使用 TextMate 编辑我正在做的项目(HTML 文件),并且我有一些使用 class=navigation 属性分配的

标签,但是我需要更改此
以实现我正在计划的新设计,但它们太多(如果我搜索 class=navigation,大约有 47 个结果) )。

所以我需要一个正则表达式来匹配找到此属性的整行,但它是哪个?

I'm using TextMate to edit a project that I'm doing(HTML files) and I have some <div> tags assigned with the class=navigation property, but I need to change this <div>'s for a new design that I'm planning, but they are much(about 47 results if I search for class=navigation).

So I need a regular expression to match the entire line that this property is found, but which is it?

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

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

发布评论

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

评论(1

因为看清所以看轻2024-11-15 18:00:59

我不是正则表达式专家,但我认为 ^.*class=navigation.*$ 会起作用。

I'm not a regex expert, but I would think that ^.*class=navigation.*$ would work.

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