-5
文字列C#ですべての単語を見つける方法:は、私はこの機能を持っている
public static string getBetween(string strSource, string strStart, string strEnd)
{
int Start, End;
if (strSource.Contains(strStart) && strSource.Contains(strEnd))
{
Start = strSource.IndexOf(strStart, 0) + strStart.Length;
End = strSource.IndexOf(strEnd, Start);
return strSource.Substring(Start, End - Start);
}
else
{
return "";
}
}
private void button9_Click(object sender, EventArgs e)
{
string text = "This is an example string and my data1 is here and my data2 is and my data3 is ";
richtTextBox1.Text = getBetween(text, "my", "is");
}
機能は私にこの結果を与えるが:
:私はこの結果をしたいです
データ1データ2データ3
は、すべての文字列のサンプルを掲載** strSource、strStart、strEnd **あなたのコードの – rashfmnb
投稿しないでください/リンクのスクリーンショット、あなたの質問に実際のコードを載せてください。 – Habib