You must escape special Regex symbols in input wildcard pattern (for example pattern *.txt
will equivalent to ^.*\.txt$
)So slashes, braces and many special symbols must be replaced with @"\"+ s
, where s
- special Regex symbol.
↧
Answer by Camarada for Need to perform Wildcard (*,?, etc) search on a string using Regex
↧