Notepad++ – Select whole line that contains a string with space

notepadregex

I want to select whole line that contains the word State Province.

Fro the Search menu > Find, using (.*State.*) will select whole line that contains the word State. But using (.*State\sProvince.*) does not.

What's the correct regex command?

Related Question