当前位置:   article > 正文

android 拼音过滤、匹配首字母_android string 匹配字母

android string 匹配字母

第一步:添加

implementation 'com.github.open-android:pinyin4j:2.5.0'

第二步:拼音工具类

public class Pinyin4jUtil {
    public static StringBuilder sb=new StringBuilder();

    /**
     * 获取汉字字符串的各个字首字母
     * 中国:zg
     * @param chines
     * @return
     */
    public static  String getPinYinHeadChar(String chines){
        sb.setLength(0);
        char[] chars=chines.toCharArray();
        HanyuPinyinOutputFormat defaultFormat=new HanyuPinyinOutputFormat();
        defaultFormat.setCaseType(HanyuPinyinCaseType.LOWERCASE);
        defaultFormat.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
        for (int i=0;i<chars.length;i++){
            if(chars[i]>128){
                try{
                    sb.append(PinyinHelper.toHanyuPinyinStringArray(chars[i],defaultFormat)[0].charAt(0));
                }catch (Exception e){
                    e.printStackTrace();
                }
            }else{
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/596809
推荐阅读
相关标签
  

闽ICP备14008679号