正则表达式不匹配行的开头/结尾

发布于 2024-11-08 06:07:32 字数 273 浏览 0 评论 0原文

我希望正则表达式仅匹配 "

  • 不出现在行首或行首空白之后的
  • "不出现在行尾或末尾空白之前的 "行

我想我需要使用lookbehind和lookahead

所以匹配“in

zfgjhsgaf jhsa gd " gjhygf" hgf

但不” 。

"gjhgjkgjhgjhgkk"

      "dfsdfsdf"   

I would like a regular expression to match only " that

  • don't come at the start of a line or after white space at the start of a line
  • don't come at the end of a line or before white space at the end of a line

I guess I need to use lookbehind and lookahead.

So matches the " in

zfgjhsgaf jhsa gd " gjhygf" hgf

But not in

"gjhgjkgjhgjhgkk"

      "dfsdfsdf"   

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

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

发布评论

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

评论(5

自由范儿 2024-11-15 06:07:32

对于 Eclipse,尝试通过此正则表达式查找:

(?<!^\s*)"(?!\s*$)

并替换为:

\"

For Eclipse, try finding by this regex:

(?<!^\s*)"(?!\s*$)

And replacing with:

\"
恋你朝朝暮暮 2024-11-15 06:07:32

请参阅此处

(?<!^)"(?!\s*$)

at Regexr

它不适用于行开头之后的空格。正如 BoltClock 提到的,只有少数引擎支持可变长度后视(我只知道 .net)。

如果您使用支持它的正则表达式,则可以使用

(?<!^.*)"(?!\s*$)

perldoc.perl.org/perlretut.html#Looking-ahead-and-looking-behind

See this here

(?<!^)"(?!\s*$)

at Regexr

It works not for the whitespace after beginning of the line. As BoltClock mentioned, variable length look behind is supported only by few engines (I know only .net).

If you use a regex that support it, you can use

(?<!^.*)"(?!\s*$)

A good documentation for look ahead/behind is here in the perldoc.perl.org/perlretut.html#Looking-ahead-and-looking-behind

叫思念不要吵 2024-11-15 06:07:32
^\s*"?.*\S.*(").*?\S.*?"?\s*$

它支持匹配 ' "foo"bar" ' 假设这是你想要找到的东西。

哦,它仅在设置 $1 时匹配

^\s*"?.*\S.*(").*?\S.*?"?\s*$

Which supports matching ' "foo"bar" ' assuming that is something that you want to find.

Oh, and it only matches if $1 is set

在风中等你 2024-11-15 06:07:32

这个应该可以

^\s*[^"].*".*[^"]\s*$

This one should work

^\s*[^"].*".*[^"]\s*$
摇划花蜜的午后 2024-11-15 06:07:32

我认为这已经足够表达了:

^\s*\S+.*innertext.*\S+\s*$

I think whis re is expressive enougth :

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