Last active
August 21, 2019 12:07
-
-
Save klein-artur/c6513766e87bc1856d6b41f9eb3dfc5e to your computer and use it in GitHub Desktop.
Revisions
-
klein-artur revised this gist
Aug 21, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ # Find Strings between quotes ``` (?:")((?:.|\n)*?)(?<!\\)(?:") -
klein-artur created this gist
Aug 21, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ # Find Strings between quotes with escaped quotes ``` (?:")((?:.|\n)*?)(?<!\\)(?:") ``` The first group will be the string itself. Escaped quotes are ignored.