如何删除字符串的一部分?
继续我的 上一个问题,我现在想在找到该数字并将其存储在变量中后将其删除。
Continuing from my previous question, I now want to remove the number once I have found it and stored it in a variable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需稍微调整一下 我对你的第一个问题的回答,改为使用 Regex.Replace 方法将完成。
Just a slight tweak to my response to your first question to instead use Regex.Replace method will git 'er done.
别担心,我已经弄清楚了。只需找到长度然后删除字符
(qual 是找到的整数)
Don't worry I figured it out. Just need to find the length then delete the chars
(qual is the intergers found)
我认为以下代码解决了根本问题:
I think the following code resolves the root problem: