去掉html格式asp.net
如何去掉html格式strings=Label1.Text;inti=0,j=0;while(s.IndexOf(">")!=-1){i=s.IndexOf(">",j)...
如何去掉html格式
string s = Label1.Text;
int i = 0, j = 0;
while (s.IndexOf(">") != -1)
{
i = s.IndexOf(">", j)+1;
j = s.IndexOf("<", i);
if (i == -1 || j == -1)
break;
if (s.Substring(i, j - i).Trim() != "")
TextBox1.Text += s.Substring(i, j - i) + "\n";
} 展开
string s = Label1.Text;
int i = 0, j = 0;
while (s.IndexOf(">") != -1)
{
i = s.IndexOf(">", j)+1;
j = s.IndexOf("<", i);
if (i == -1 || j == -1)
break;
if (s.Substring(i, j - i).Trim() != "")
TextBox1.Text += s.Substring(i, j - i) + "\n";
} 展开
3个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询