Skip to content
Advertisement

How to match multiple words in multiple lines

I have a multiline text, e.g.

JavaScript

I need to see if two words present in whole text (AND operator). I tried something like:

JavaScript

Advertisement

Answer

You can try this regex:

JavaScript
  • [sS] matches literally everything, encluding line wraps

  • b is the word bound, so word1 count but sword1 does not.

And since you treat all the lines as a whole, you dont need m flag

Also you’re only testing the text, you don’t need g flag either

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement