如何删除字符串的一部分?

发布于 2024-09-24 20:23:14 字数 176 浏览 4 评论 0原文

继续我的 上一个问题,我现在想在找到该数字并将其存储在变量中后将其删除。

Continuing from my previous question, I now want to remove the number once I have found it and stored it in a variable.

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

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

发布评论

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

评论(3

世界等同你 2024-10-01 20:23:14

只需稍微调整一下 我对你的第一个问题的回答,改为使用 Regex.Replace 方法将完成。

Just a slight tweak to my response to your first question to instead use Regex.Replace method will git 'er done.

嗫嚅 2024-10-01 20:23:14

别担心,我已经弄清楚了。只需找到长度然后删除字符
(qual 是找到的整数)

string length = qual.ToString();
            int length2 = length.Length;
            text.Remove(0, length2);

Don't worry I figured it out. Just need to find the length then delete the chars
(qual is the intergers found)

string length = qual.ToString();
            int length2 = length.Length;
            text.Remove(0, length2);
诗酒趁年少 2024-10-01 20:23:14

我认为以下代码解决了根本问题:

string originalString = "35|http://www.google.com|123";
string[] elements = originalString.Split(new char[] { '|' }, 2);
int theNumber = int.Parse(elements[0]);   // 35
string theUrl = elements[1];              // http://www.google.com|123

I think the following code resolves the root problem:

string originalString = "35|http://www.google.com|123";
string[] elements = originalString.Split(new char[] { '|' }, 2);
int theNumber = int.Parse(elements[0]);   // 35
string theUrl = elements[1];              // http://www.google.com|123
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文