asp.net – 十六进制值0x0B,是XML中的无效字符问题

我得到异常”,十六进制值0x0B,是一个无效字符.第23行,第22位.

我已经尝试过Here的解决方案,但它对我不起作用.由于我的项目是3.5版本,我不能使用XmlConvert.IsXmlChar方法MSDN

怎么处理?

最佳答案 您可以使用以下方法替换这些无效字符.

public static string CleanInvalidXmlChars(this string StrInput)
    {
        //Returns same value if the value is empty.
        if (string.IsNullOrWhiteSpace(StrInput))
        {
            return StrInput;
        }
        // From xml spec valid chars:
        // #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF]    
        // any Unicode character, excluding the surrogate blocks, FFFE, and FFFF.
        string RegularExp = @"[^\x09\x0A\x0D\x20-\xD7FF\xE000-\xFFFD\x10000-x10FFFF]";
        return Regex.Replace(StrInput, RegularExp, String.Empty);
    }
点赞