Answers for "match regex in multiple lines"

6

regex find lines containing two strings

^(?=.*\bstring1\b)(?=.*\bstring2\b).*$
Posted by: Guest on February-12-2021
1

match any character across multiple line regex

((.|\n)*)<FooBar>
Posted by: Guest on October-13-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language