Regex accent insensitive?

后端 未结 7 1676
天命终不由人
天命终不由人 2020-12-09 17:38

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

相关标签:
7条回答
  • 2020-12-09 18:40

    Can you try this and see if it works:

    [\u00E9-\u00F8\w]
    
    0 讨论(0)
提交回复
热议问题