xslt 命名空间


1
/// <summary> 2 /// 移除Xml文本中的命名空间和前缀 3 /// </summary> 4 /// <param name="xmlText">源xml文本</param> 5 /// <returns>移除名称空间和前缀后的xml文本</returns> 6 public static string RemovePrefixAndNamespace(string xmlText) 7 { 8 if (string.IsNullOrEmpty(xmlText)) 9 { 10 return xmlText; 11 } 12 13 Regex regex = new Regex("( xmlns(:(?<prefix>[^=]*))*=)\"[^\"]*\"", RegexOptions.IgnoreCase | RegexOptions.Multiline); 14 MatchCollection collection = regex.Matches(xmlText); 15 if (collection.Count <= 0) 16 { 17 return xmlText; 18 } 19 20 List<string> prefixes=new List<string>(); 21 foreach (Match match in collection) 22 { 23 string temp = match.Groups["prefix"].Value; 24 if (!string.IsNullOrEmpty(temp) && !prefixes.Contains(temp)) 25 { 26 prefixes.Add(temp); 27 } 28 } 29 30 StringBuilder rePattern = new StringBuilder("( xmlns(:[^=]*)*=\"[^\"]*\")"); 31 foreach (string prefix in prefixes) 32 { 33 rePattern.Append(string.Format("|({0}:)", prefix)); 34 } 35 Regex reReplace = new Regex(rePattern.ToString(), RegexOptions.IgnoreCase | RegexOptions.Multiline); 36 xmlText=reReplace.Replace(xmlText, ""); 37 38 return xmlText; 39 }

带命名空间匹配比较麻烦,如不需求,移除XSLT  命名空间

转载于:https://www.cnblogs.com/amws/p/4160084.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值