正则表达式解析字符串替换问题
我想知道是否有一种简单的方法来解析这样的字符串
set PROMPT = Yes, Master?
我想做的就是解析该字符串的一部分直到等号并将等号之后的第二部分解析为另一个字符串。
I would like to know if there is an easy way for parsing a string like this
set PROMPT = Yes, Master?
What I would like to do, is parse one part of this string up to the equal sign and parse the second part after the equal sign into another string.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
类似...
或
[更新]每个评论的更改。
Something like...
or
[updated] Changes per comments.
尝试匹配此正则表达式
/\s*set\s*(\w+)\s*=\s*(.*)\s*$/
并使用$1
设置部分代码> 和 <代码>$2:Try matching this regex
/\s*set\s*(\w+)\s*=\s*(.*)\s*$/
and setting the parts with$1
and$2
: