Search found 1 match

by shreyathakare_91
01.03.2019, 08:04
Forum: General Discussion
Topic: Search in files/folders for files containing two strings using regular expressions
Replies: 3
Views: 18390

Re: Search in files/folders for files containing two strings using regular expressions

The syntax (?si), at beginning of the regex, are modifiers which ensures that :

The dot ( . ) special character matches, absolutely, any single character ( standard or EOL )

The search will be perform, in an insensitive case way ( If you need a sensitive search, just use the syntax (?s-i) )

Then ...