使用正则表达式匹配字符串中的内部结束字符集

时间:2012-02-29 16:57:53

标签: regex

在以下两个字符串中,我想创建一个正则表达式,它返回可见性绑定的绑定属性和值。

在这个字符串中我想回来:visible:visible()

"attr:{fill:fill(),stroke:stroke()},visible:visible()"

在这个字符串中我想回来:visible:propertyIsVisible()

"attr:{fill:fill(),stroke:stroke()},visible:propertyIsVisible(),click:clickEvent"

在这个字符串中我想回来:visible:properties.visibilityProperty

"visible:properties.visibilityProperty, click:clickMe"

有任何regexperts有一个很好的建议,使用正则表达式得到这个?

1 个答案:

答案 0 :(得分:1)

这样的事情怎么样?

(visible:[A-z\(\)\.-_]*)