Created
December 20, 2019 05:39
-
-
Save imsmo/93fc313128ccba6ffb22ba06f4a9a194 to your computer and use it in GitHub Desktop.
Sublime Regex
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 characters
1. Example: "This is just\na simple sentence". | |
I want to match every character between "This is" and "sentence". Line breaks should be ignored. I can't figure out the correct syntax. | |
Regex: (?<=This is)(.*)(?=sentence) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment