求一JS正则
str= "<span id='pageLocation'>> <a href="menu_1.html" title="关于我们">关于我们</a> ></span>"
或者
str= "<span id='pageLocation'>> <a href="products.html" title="产品中心">产品中心</a> ></span>"
之类的。
求一下js正则,清除HTML。提取“关于我们”或“产品中心”
感谢。
------解决方案-------------------- <a href="" value="value的值" onclick="fnhref()" id="href">测试</a>
function fnhref()
{
var href=document.getElementById("href").value;
alert(href);
}
这样可以提取value的值
------解决方案--------------------
public class SubStr {
public static void main(String args[]) {
String str= "<span id='pageLocation'>> <a href=\"products.html\" title=\"产品中心\">产品中心</a> ></span>";
StringBuffer sb = new StringBuffer(str);
sb.delete(0, sb.indexOf("\">") + 2);
sb.delete(sb.indexOf("</a>"), sb.length());
String name = sb.toString();
System.out.println("name: " + name);
}
}