Java 区分文本中的中英文字符函数
程序员文章站
2023-11-29 09:16:52
复制代码 代码如下:public class encntest { public static void main(string args[]) { byt...
复制代码 代码如下:
public class encntest
{
public static void main(string args[])
{
byte buf[] = args[0].getbytes();
boolean halfchinese = false;
for(int i=0;i
{
if(halfchinese)
{
byte ch[] = {buf[i-1],buf[i]};
system.out.println("索引"+(i-1)+"位置为中文("+new string(ch)+")");
halfchinese = false;
continue;
}
if((buf[i] & 0x80) == 0)
{
system.out.println("索引"+i+"位置是英文("+(char)buf[i]+")");
}
else
{
halfchinese = true;
}
}
}
}
上一篇: sql server 表结构修改方法