我需要一个javascript正则表达式解决方案来匹配此字符串中的特定文本。
var stirng =“[[http://www.example.com/path/image.jpg,(默认)],[,(中)),[某事,(大)]]”;
我希望将这些值作为结果http://www.example.com/path/image.jpg,“”,
由于
答案 0 :(得分:1)
正则表达式:
<figure>
<img src="http://lorempixel.com/400/400/" />
<figcaption>Image caption</figcaption>
</figure>
将使用以下代码执行此操作:
/\[([^,]*)/g
&#13;