C#怎么提取中的字符
C#怎么提取<title></title>中的字符
int startIndex = str.IndexOf("<title>") + "<title>".Length;
int endIndex = str.IndexOf("</title>");
str.Substring(startIndex).Replace(str.Substring(endIndex),""); //<title>到</title>之间的