仅在XML中替换属性中的双引号:C#

时间:2016-05-12 03:19:56

标签: c# regex xml string escaping

我有这个字符串,它将成为XML / XML节点的一部分:

string a = "<Node a=\"a\"[\"\"/>";

我只需要转义属性引号,以便它变为

a= "Node a=\"a&qout;[&qout;\"/>";

我正在使用C#,.NET 2.0。

1 个答案:

答案 0 :(得分:1)

您找到的链接是正确的,只需要适应C#。

以下是转换:

using System;
using System.Collections.Generic;
using System.Text;

namespace RegEx
{
    class Program
    {
        static void Main(string[] args)
        {
            string text = "<Node a=\"a\"[\"\" b=\"b\"[\"\"/>   <Node2 a=\"a\"[\"\" b=\"b\"[\"\"/>";
            string regEx = "(\\s+[\\w:.-]+\\s*=\\s*\")(([^\"]*)((\")((?!\\s+[\\w:.-]+\\s*=\\s*\"|\\s*(?:/?|\\?)>))[^\"]*)*)\"";
            StringBuilder sb = new StringBuilder();

            int currentPos = 0;
            foreach(System.Text.RegularExpressions.Match match in System.Text.RegularExpressions.Regex.Matches(text, regEx)) {
                sb.Append(text.Substring(currentPos, match.Index - currentPos));
                string f = match.Result(match.Groups[1].Value + match.Groups[2].Value.Replace("\"", "&quot;")) + "\"";
                sb.Append(f);
                currentPos = match.Index + match.Length;
            }

            sb.Append(text.Substring(currentPos));

            Console.Write(sb.ToString());
        }
    }
}