使用 Regex .net 替换指定字符
我这里有一个小的正则表达式,我从文件中删除所有空格并用“-”替换它们。
我还想用“-”替换其他字符,例如“,”和“_”。
如何在我的正则表达式中列出这些字符?
Regex r = new Regex(@"\s+");
string fileName = r.Replace(Files.Name, @"-");
I have a small Regex here where I am removing all the white spaces from within a file and replacing them with '-'.
I want to also replace other characters with '-' such as ',' and '_'.
How can I list these characters in my regex?
Regex r = new Regex(@"\s+");
string fileName = r.Replace(Files.Name, @"-");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请注意,
-
必须是第一个、最后一个,否则您将需要转义。Be aware that the
-
must be the first, the last or you'll need escaping.