RegEx: Grabbing values between quotation marks

前端 未结 20 1276
暖寄归人
暖寄归人 2020-11-22 02:13

I have a value like this:

\"Foo Bar\" \"Another Value\" something else

What regex will return the

20条回答
  •  太阳男子
    2020-11-22 02:48

    A very late answer, but like to answer

    (\"[\w\s]+\")
    

    http://regex101.com/r/cB0kB8/1

提交回复
热议问题