C# 中文字符比较 or C#汉字比较 or C# 中文字符串比较 or C#中文名字比较

C# 中文字符比较 or C#汉字比较 or  C# 中文字符串比较 or C#中文名字比较


///
///  类扩展
///
public static class StringEx
{
    ///
    /// 比较中文字符是否相等
    ///
    /// name1 ">
    /// name2 ">
    ///
    public static bool ChinesComPare( this string name1, string name2)
    {
        name1 = name1.Replace( " " , "" );//去除掉名字直接的空格
        name2 = name2.Replace( " " , "" ); //去除掉名字直接的空格
        byte [] utf81 = Encoding .UTF8.GetBytes(name1);
        byte [] utf82 = Encoding .UTF8.GetBytes(name2);
        bool equal = utf81.IsEqual(utf82);
        return equal;
    }

    ///
    /// 比较2个字节数组是否相等
    ///
    /// src ">
    /// dis ">
    ///
    public static bool IsEqual( this byte [] src, byte [] dis)
    {
        bool isEq = false ;
        if (src.Length != dis.Length)
        {
            isEq = false ;
        }
        else
        {
            isEq = true ;
            for ( int i = 0; i < src.Length; i++)
            {
                if (src[i] != dis[i])
                {
                    isEq = false ;
                    break ;
                }
            }
        }
        return isEq;
    }
}

        string n1 = "杨光" ;
        string n2 = "杨 光 " ;
        if (n1.ChinesComPare(n2))
        {
            //true
        }

你可能感兴趣的:(c#)