インターネットから長い文字列をロードする必要があり、それを実行しました。H1
ここで、ヘッダー タグを見つけて内容を出力する必要があります。
それを行うための最短または最も簡単な方法は何ですか?
for (int x = 0; x < tempString.Length; x++)
{
if (write == 2)
{
name =name + tempString[x];
lenght++;
}
if (tempString[x] == '<' && tempString[x] == 'h' && tempString[x] == '1' )
write = 1;
if (write == 1 && tempString[x] == '>')
write = 2;
if (tempString[x] == '-' && write == 1)
write = 0;
}
私はそれが少し奇妙だと言うことを知っています。しかし、それは私が持っているすべてです。