A 有一个字符串,如'<node attr="some_value">'
. 如何attr="some_value"
从此字符串中删除?我只知道attr
属性名称,不知道"some_value"
值。
PS 我正在使用 JavaScript,但任何语言的解决方案都会很棒。提前致谢。
问问题
987 次
3 回答
2
试试这个:需要 jquery。
var xml = '<node attr="some_value">';
var newXml = $(xml).removeAttr('attr');
于 2012-04-25T09:39:32.813 回答
1
使用正则表达式来处理 XML 是在乞求灾难。我会使用内置的 Xml 功能来执行此操作。
xmlDoc=loadXMLDoc("books.xml");
x=xmlDoc.getElementsByTagName('book');
document.write(x[0].getAttribute('category')); document.write("<br />");
x[0].removeAttribute('category');
document.write(x[0].getAttribute('category'));
XML 在哪里
<bookstore>
<book category="cooking">
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
</book>
<book category="children">
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
<book category="web">
<title lang="en">XQuery Kick Start</title>
<author>James McGovern</author>
<author>Per Bothner</author>
<author>Kurt Cagle</author>
<author>James Linn</author>
<author>Vaidyanathan Nagarajan</author>
<year>2003</year>
<price>49.99</price>
</book>
<book category="web" cover="paperback">
<title lang="en">Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
</book>
</bookstore>
于 2012-04-25T09:36:00.363 回答
0
经典解决方案:使用字符串函数,例如:
str = str.substring(0,str.indexOf("attr")-1) + ">"
于 2012-04-25T09:35:06.327 回答