如何在 javascript 的正则表达式"""之间获取文本?"""例子:"""hello world""" 应该给 hello world""" hi """ """world""" 应该给 [hi, world]
1 回答
沧海一幻觉
TA贡献1824条经验 获得超5个赞
干得好:
(?<=""") ?\w+ ?( \w+)*(?=""")
解释
(?<=""") ---> make sure three quotes appear prior to a word
? ---> optional space
\w+ ---> match any word characters
( \w+)* ---> match 0 or more spaced out words
(?+""") ---> ensure that there's following close quotes
在这里看到它的作用
添加回答
举报
0/150
提交
取消