Hello and thanks for coming by,
I have a string => "var string = Lets search for \"This film\" and \"This game\" ";
I would like => var result = ["This Film", "This game"];
How => with a Regex.
For the moment I do have something :
"Lets search for \"This film\" and \"This game\" ".match(/"([^}]*)"/)
Which return me
[""This film" and "This game"", "This film" and "This game"]
But that's not exactly what I would like.
Since I'm really confused with regex, (I know what this one is doing, but not the correct syntax to modify it), can someone help me achieve that?
Thank you very much
P.S : I do have searched on the internet, but all answer got this same exact problem.