使用 Regex .net 替换指定字符

发布于 2024-12-11 07:28:38 字数 205 浏览 0 评论 0原文

我这里有一个小的正则表达式,我从文件中删除所有空格并用“-”替换它们。

我还想用“-”替换其他字符,例如“,”和“_”。

如何在我的正则表达式中列出这些字符?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暮年 2024-12-18 07:28:38
Regex r = new Regex(@"[\s,_-]+");

string fileName = r.Replace(Files.Name, @"-");

请注意,- 必须是第一个、最后一个,否则您将需要转义。

Regex r = new Regex(@"[\s,_-]+");

string fileName = r.Replace(Files.Name, @"-");

Be aware that the - must be the first, the last or you'll need escaping.

情痴 2024-12-18 07:28:38
Regex r = new Regex(@"(\s|-|,|_)+");
Regex r = new Regex(@"(\s|-|,|_)+");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文