首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

汉语言繁体unicode 范围

2012-10-14 
中文繁体unicode 范围String temp 我是XXXkevin很愛很愛繁體字のfor(int i0itemp.length()i++){ch

中文繁体unicode 范围
String temp = "我是XXXkevin很愛很愛繁體字の";
for(int i=0;i<temp.length();i++){
char c = temp.charAt(i);
if(c >= '\u4E00' && c<='\u9FA5'){
System.out.println("true");
}else{
System.out.println("false");
}
}

热点排行