I am looking for a way to RegEx match for a string (double quote followed by one or more letter, digit, or space followed by another double quote). For example, if the input was var s = "\"this is a string\""
, I would like to create a RegEx to match this string and produce a result of [""this is a string""].
Thank you!