标签: c# regex
我有一些文字,只需要在一次匹配中选择字母数字字符即可。
我已经在正则表达式中尝试过
[^\W]+ Pattern : [^\W]+ Input: This is "My Page"
https://rubular.com/r/PMQwahJIqqiOOI
我需要的输出:This is My Page
This is My Page
答案 0 :(得分:3)
使用此正则表达式删除不是文字字符或空格的所有内容,
[^\w ]+
具有空白。
Regex Demo