Java 計算中英文長度的若干種方法

來源:互聯網
上載者:User

標籤:中英文長度   Regex   bytes   length   字元替換   

在項目開發中經常碰到到輸入字元的校正,特別是中英文混合在一起的校正。而為了滿足校正的需求,有時需要計算出中英文的長度。

本文將通過幾種常用的方法實現長度的計算:

<span style="font-size:18px;">import java.io.UnsupportedEncodingException;/** * 中英文校正的處理 * @author a123demi * */public class EnChValidate {public static void main(String[] args){String validateStr= "中英文校正abcde介面ii";int bytesStrLength = getBytesStrLength(validateStr);int chineseLength = getChineseLength(validateStr);int regexpLength = getRegExpLength(validateStr);System.out.println("getBytesLength:" + bytesStrLength + ",chineseLength:" + chineseLength + ",regexpLength:" + regexpLength);}/** * 根據字元編碼 位元組數產生一個臨時的字串 * @param validateStr * @return */public static int getBytesStrLength(String validateStr){String tempStr = "";try {tempStr = new String(validateStr.getBytes("gb2312"),"iso-8859-1");} catch (UnsupportedEncodingException e) {// TODO Auto-generated catch blocke.printStackTrace();}return tempStr.length();}/**     * 擷取字串的長度,如果有中文,則每個中文字元計為2位     *     * @param validateStr     *            指定的字串     * @return 字串的長度     */    public static int getChineseLength(String validateStr) {        int valueLength = 0;        String chinese = "[\u0391-\uFFE5]";        /* 擷取欄位值的長度,如果含中文字元,則每個中文字元長度為2,否則為1 */        for (int i = 0; i < validateStr.length(); i++) {            /* 擷取一個字元 */            String temp = validateStr.substring(i, i + 1);            /* 判斷是否為中文字元 */            if (temp.matches(chinese)) {                /* 中文字元長度為2 */                valueLength += 2;            } else {                /* 其他字元長度為1 */                valueLength += 1;            }        }        return valueLength;    }        /**     * 利用Regex將每個中文字元轉換為"**"     * 匹配中文字元的Regex: [\u4e00-\u9fa5]     * 匹配雙位元組字元(包括漢字在內):[^\x00-\xff]     * @param validateStr     * @return     */    public static int getRegExpLength(String validateStr){//    String temp = validateStr.replaceAll("[\u4e00-\u9fa5]", "**");    String temp = validateStr.replaceAll("[^\\x00-\\xff]", "**");    return temp.length();    }}</span>


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.