我需要从互联网上加载一个长字符串,我已经做到了。现在我需要找到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;
}
我知道这有点奇怪。但这就是我所拥有的。