I want to get string from between \" using regular expression.
Input : "gram:\"who is $t34he\""
Expected Ouput : who is $t34he
I tried /\\"(.*?)\\"/g
this and got \"who is $t34he\"
but I don't need \"
into the output string. Any solution.
Tried on http://www.regexr.com/