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
Try this:
String pattern = @"[\p{L}\w]+";