用于搜索和替换 C# 字符串中的字符的正则表达式

发布于 2024-12-04 19:44:50 字数 67 浏览 1 评论 0原文

我试图在字符串中搜索逗号,然后“删除”它(我假设用“”替换它)。我对执行此操作的一般方法感兴趣。正则表达式有替换方法吗?

I'm trying to search for a comma in a string, and then "delete" it (replaced it with "", I'm assuming). I'm interested in a general way to do this. Does regex have a Replace method?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

木落 2024-12-11 19:44:50

为什么不只是普通的 string.Replace() 呢?

var result = str.Replace(",", string.Empty);

Why not just normal string.Replace()?

var result = str.Replace(",", string.Empty);
败给现实 2024-12-11 19:44:50

如果你仍然想使用正则表达式,试试这个

        static void Main(string[] args)
    {
        Regex regex = new Regex(@"\,");
        Console.WriteLine(regex.Replace("sample, text", string.Empty));
        Console.ReadLine();
    }

If you still want to use regular expression, try this

        static void Main(string[] args)
    {
        Regex regex = new Regex(@"\,");
        Console.WriteLine(regex.Replace("sample, text", string.Empty));
        Console.ReadLine();
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文