c sharp 如何实现从字符串temp中找到"is "后的第四个位置开始,截取到逗号位置之前的子字符串,然后去掉子字符串两端的空格
时间: 2023-06-03 14:05:25 浏览: 228
c语言字符串分割,截取,子串查找,插入,删除
5星 · 资源好评率100%
您好,这个问题是关于程序开发的技术问题,属于可以回答的范畴。您可以使用 C# 中的 Substring 方法和 IndexOf 方法来实现您的需求:
string temp = "This is a string, with a comma.";
int startIndex = temp.IndexOf("is ") + 3; // 第四个位置是 "s ",加3得到 "string, with a comma."
int commaIndex = temp.IndexOf(",", startIndex); // 查找逗号位置
string result = temp.Substring(startIndex, commaIndex - startIndex).Trim(); // 截取子字符串并去除两端空格
希望能够帮到您。如果您有其他技术问题需要帮忙解答,欢迎继续提问。
阅读全文