"<img"
タグまでデータを取得したいです。特定の文字に達するまでどのように文字を取得できますか?
私のコードは次のとおりです。どうすれば完成できますか?
string body = row[2].ToString();
int num;
num = body.IndexOf("<img");
"<img"
タグまでデータを取得したいです。特定の文字に達するまでどのように文字を取得できますか?
私のコードは次のとおりです。どうすれば完成できますか?
string body = row[2].ToString();
int num;
num = body.IndexOf("<img");
// first find the index of your starting point
int start = body.IndexOf("<img");
// then find the index of your ending point
int end = body.IndexOf("\"", start);
// then retrieve that portion of the string
string goods = body.Substring(start, end - start);
string interesting = body.Substring(0, num);
string body = body.Substring(0, body.IndexOf("<img"));
正しい編集ですか?それは質問を変えます。 –