Linq 或字符串过滤器
我需要一个字符串过滤器,它接受另一个字符串作为参数,扫描第一个字符串并删除它的所有出现。
I need a filter on the string which takes another string as a parameter, scans first string and removes all appearances of it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 string.Replace ,它有专门用于此目的的重载。
这将获取您的 oldString,找到所有出现的“foo”并将其删除。
You can use string.Replace which has an overload specifically for this.
This takes your oldString, finds all occurrences of "foo" and removes them.
这可行吗?
这不正确吗?
This would work
Is that not correct?
使用扩展方法:
用法:
Use extension methods:
usage: