com.power.common.util.PinyinUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-util Show documentation
Show all versions of common-util Show documentation
ApplicationPower common-util
package com.power.common.util;
/**
* Created by yu on 2017/8/13.
*/
public class PinyinUtil {
/**
* Get the initials of Chinese Pinyin
*
* @param str String content
* @return string
*/
public static String getFirstLetter(String str) {
return null;
}
/**
* Get the first letter of a person's name in Pinyin
*
* @param str String content
* @return string
*/
public static String getFirstLetterPerson(String str) {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy