用于搜索和替换 C# 字符串中的字符的正则表达式
我试图在字符串中搜索逗号,然后“删除”它(我假设用“”替换它)。我对执行此操作的一般方法感兴趣。正则表达式有替换方法吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不只是普通的 string.Replace() 呢?
Why not just normal string.Replace()?
如果你仍然想使用正则表达式,试试这个
If you still want to use regular expression, try this