在以下两个字符串中,我想创建一个正则表达式,它返回可见性绑定的绑定属性和值。
在这个字符串中我想回来: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有一个很好的建议,使用正则表达式得到这个?
答案 0 :(得分:1)
这样的事情怎么样?
(visible:[A-z\(\)\.-_]*)