Skip to content

Instantly share code, notes, and snippets.

@klein-artur
Last active August 21, 2019 12:07
Show Gist options
  • Save klein-artur/c6513766e87bc1856d6b41f9eb3dfc5e to your computer and use it in GitHub Desktop.
Save klein-artur/c6513766e87bc1856d6b41f9eb3dfc5e to your computer and use it in GitHub Desktop.
Regex to find strings

Find Strings between quotes

(?:")((?:.|\n)*?)(?<!\\)(?:")

The first group will be the string itself. Escaped quotes are ignored.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment