gpt4 book ai didi

c - C语言中提取字符串的一部分

转载 作者:行者123 更新时间:2023-11-30 19:44:04 24 4
gpt4 key购买 nike

我想在 C 语言中提取给定限制内的字符串的一部分。我试过strcpy()但它只提取字符串中的前 n 个字符。
我怎样才能做到这一点?

最佳答案

您正在寻找的是 Substring()。这是一个简单的例子:

string Str = "I only want to extract \"want\" from this string.";
string Str2 = Str.Substring(7, 4);
MessageBox.Show("String 1: " + Str +" - String 2: "+Str2);

关于c - C语言中提取字符串的一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28785856/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com