I need a Regex in a C# program.
I\'ve to capture a name of a file with a specific structure.
I used the \\w cha
\\w
Case-insensite works for me in this example:
string input =@"âãäåæçèéêëìíîïðñòóôõøùúûüýþÿı"; string pattern = @"\w+"; MatchCollection matches = Regex.Matches (input, pattern, RegexOptions.IgnoreCase);