gpt4 book ai didi

c# - 使用 C# 在字符串中查找文本

转载 作者:IT王子 更新时间:2023-10-29 03:44:12 25 4
gpt4 key购买 nike

如何在字符串中找到给定的文本?在那之后,我想在它和其他东西之间创建一个新的字符串。例如,如果字符串是:

This is an example string and my data is here

我想用“my”和“is”之间的任何内容创建一个字符串,我该怎么做?这是非常伪的,但希望它是有道理的。

最佳答案

使用这个方法:

public static string getBetween(string strSource, string strStart, string strEnd)
{
if (strSource.Contains(strStart) && strSource.Contains(strEnd))
{
int Start, End;
Start = strSource.IndexOf(strStart, 0) + strStart.Length;
End = strSource.IndexOf(strEnd, Start);
return strSource.Substring(Start, End - Start);
}

return "";
}

使用方法:

string source = "This is an example string and my data is here";
string data = getBetween(source, "my", "is");

关于c# - 使用 C# 在字符串中查找文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10709821/

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