去掉网页源码中尖括号里的内容
<tagid="1475462-244045549-6032514"author="21889415@N00"raw="DesMoineArtCenter"machine...
<tag id="1475462-244045549-6032514" author="21889415@N00" raw="Des Moine Art Center" machine_tag="0">desmoineartcenter</tag>
如何将尖括号里的内容去掉,只保留desmoineartcenter
用正则表达式! 展开
如何将尖括号里的内容去掉,只保留desmoineartcenter
用正则表达式! 展开
若以下回答无法解决问题,邀请你更新回答
1个回答
展开全部
没指定编程语言就用javascript吧:
清除标签.htm
<html>
<head>
<title>清除标签</title>
<script>
function $(id)
{
return document.getElementById(id);
}
function 清除标签(文本)
{
var 正则表达式 = /<[^>]*>/g;
//这个表达式会把"<>"也清除掉,把*改成+就不会;
return 文本.replace(正则表达式, "");
}
window.onload = function()
{
var temp = document.getElementsByTagName("html")[0].outerHTML;
$("html").value = !!$("html").value ? $("html").value : temp;
$("text").value = 清除标签(temp);
}
/*
By Arliang
21:20 2009-11-5
*/
</script>
</head>
<body>
<center>
<textarea cols="80" rows="30" id="html"></textarea><br>
<input type="button" value="清除标签↓" onclick='$("text").value = 清除标签($("html").value);'><br>
<textarea cols="80" rows="30" id="text"></textarea>
</center>
</body>
</html>
清除标签.htm
<html>
<head>
<title>清除标签</title>
<script>
function $(id)
{
return document.getElementById(id);
}
function 清除标签(文本)
{
var 正则表达式 = /<[^>]*>/g;
//这个表达式会把"<>"也清除掉,把*改成+就不会;
return 文本.replace(正则表达式, "");
}
window.onload = function()
{
var temp = document.getElementsByTagName("html")[0].outerHTML;
$("html").value = !!$("html").value ? $("html").value : temp;
$("text").value = 清除标签(temp);
}
/*
By Arliang
21:20 2009-11-5
*/
</script>
</head>
<body>
<center>
<textarea cols="80" rows="30" id="html"></textarea><br>
<input type="button" value="清除标签↓" onclick='$("text").value = 清除标签($("html").value);'><br>
<textarea cols="80" rows="30" id="text"></textarea>
</center>
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询