我正在尝试创建一个与以下元数据标记匹配的RegExp(在Flex中使用但可能在其他地方使用)。
Some text some more text [Inspectable(verbose="0",minValue="1",maxValue="100")] some text some text [Inspectable(arrayType="String",category="Styles")] some text.
到目前为止,这是我所拥有的,但它正在捕获1个单独的组而不是其中的2个。
([视察((。*))])
PS我正在使用RegExr对此进行测试。
答案 0 :(得分:1)
使用ungreedy /不情愿的量词:
(\[Inspectable\(.*?\)\])