美文网首页
第一个中文的索引位置

第一个中文的索引位置

作者: weft | 来源:发表于2016-09-22 11:18 被阅读0次
    for (int index = 0;index<content.length()-1;index++){
            
           // 将每一个角标的字符(字母 汉字 空格等)一次转换成字符串
           String w=content.substring(index, index+1);
           if(w.compareTo("\u4e00")>0&&w.compareTo("\u9fa5")<0){
               beginChinese = index;
           System.out.println("第一个中文的索引位置:"+beginChinese);
           break;
           }
            }
    

    相关文章

      网友评论

          本文标题:第一个中文的索引位置

          本文链接:https://www.haomeiwen.com/subject/tirzettx.html