如何使用node.js删除名称空间前缀?

时间:2014-06-04 21:09:21

标签: xml node.js namespaces

我使用soap webservice.In响应,我想从标记元素中删除名称空间前缀。我能怎么做 ?

我想转换为示例<common_v26:ActionStatu/> to <ActionStatu/>

1 个答案:

答案 0 :(得分:0)

您可以使用正则表达式替换

var str = "<common_v26:ActionStatus/>"
str = str.replace(/(<\s*)(.+:)/, "$1")  // str is now <ActionStatus/>