嵌套值的正则表达式 [英] Regex for nested values

查看:100
本文介绍了嵌套值的正则表达式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想要一个正则表达式,可以解析忽略嵌套的匹配

I want a regex that can parse ignoring the nested matches

我的意思是这个例子:

/*asdasdasd /* asdasdsa */ qweqweqwe */

匹配第一个/ *与最后一个* /,而不是停在第一个* /

to match the first "/*" with the last "*/" and not stopping to the first "*/"

谢谢...

推荐答案

RegEx表达式自然会贪婪,所以你可以使用:

RegEx expressions will naturally be greedy, so you can just use:

\/\*.*\*\/

你想让它做你害怕的,使RegEx懒惰,停止后,你必须添加一个像:

If you wanted it to do what you're afraid of and make the RegEx be lazy and stop after the first match you'd have to add an ? like:

\/\*.*?\*\/

这篇关于嵌套值的正则表达式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆