获得中英文混排的字符串长度

    int length = 0;
    char[] textChar = _text.ToCharArray();
    
    for(int i = 0; i < textChar.Length; i++)
    {
     length ++;
     
     if((int)textChar[i] > 255)
     {
      length += 1;
     }
    }
    
    return length; 

你可能感兴趣的:(获得中英文混排的字符串长度)