如何使用正则表达式表示以下字符串?

发布于 2024-12-14 21:43:33 字数 238 浏览 3 评论 0原文

我想使用正则表达式表示以下字符串。

这是一句话:

pro displ = "monitor" id="1"

我尝试了这个:

pro displ=(("[^"]*")monitor(("[^"]*") id =(("[^"]*")1(("[^"]*")

但它不起作用。因为我是正则表达式的新手,请帮我解决这个问题

I want to represent following string using regular expression.

This is the sentence:

pro displ = "monitor" id="1"

I tried this:

pro displ=(("[^"]*")monitor(("[^"]*") id =(("[^"]*")1(("[^"]*")

but it is not working.as i was new to regular expression please help me to solve this issue

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

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

发布评论

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

评论(2

野の 2024-12-21 21:43:33
<prop.*disp=\"(.*)\".*id=\"(.*)\".*>

你可以使用这个,然后匹配括号来改变你想要的内容。

相反,这个带有“sed”实用程序:

<prop.*disp=\"\(.*\)\".*id=\"\(.*\)\".*>
<prop.*disp=\"(.*)\".*id=\"(.*)\".*>

You can use this one, and then match the parentheses to change what you want.

Instead this one with the 'sed' utility:

<prop.*disp=\"\(.*\)\".*id=\"\(.*\)\".*>
深海不蓝 2024-12-21 21:43:33

我认为这应该可以匹配字符串:

pro\sdispl=["]monitor["]\sid=["]1["]

I think this should work to match the string:

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