如何使用正则表达式表示以下字符串?
我想使用正则表达式表示以下字符串。
这是一句话:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以使用这个,然后匹配括号来改变你想要的内容。
相反,这个带有“sed”实用程序:
You can use this one, and then match the parentheses to change what you want.
Instead this one with the 'sed' utility:
我认为这应该可以匹配字符串:
I think this should work to match the string: