Created
December 7, 2016 00:04
-
-
Save mattjbayly/70ab715bc5bcf15a19a0700cd51bf004 to your computer and use it in GitHub Desktop.
This file contains 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
################################################ | |
# Match two strings in any order: | |
'hi jack here is james' | |
'hi james here is jack' | |
^(?=.*\bjack\b)(?=.*\bjames\b).*$ | |
################################################ | |
# Match two strings with anything in between: | |
'hi jack here is james' | |
'hi jack08098kljjjames' | |
jack[^\r\n]james | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment