1. 程式人生 > >Java:判斷中英文符號、標點

Java:判斷中英文符號、標點

在Java中,主要使用 Character類處理字元有關功能,而JDK 1.7中Character是按照Unicode 6.0版本實現的,所以這個要先學習下常用的 Unicode編碼。

其中的UnicodeBlock 和 UnicodeScript類可以幫助我們判斷字元型別,UnicodeBlock是Unicode標準協會組織unicode碼的一個基本單位,實際上一個 UnicodeBlock代表一片連續的Unicode號碼段,UnicodeBlock之間不重疊。例如,通常我們利用Unicode編碼是否在 0x4E00–0x9FCC 來判斷某字元是否為漢字,就是因為,有個UnicodeBlock 專門劃分為儲存漢字 (準確的說是 CJK統一漢字),這個UnicodeBlock叫做 CJK Unified Ideographs,總共定義了 74,617 個漢字。

UnicodeBlock 與 UnicodeScript 關係:

所以UnicodeScript 是從語言書寫規則層次對Unicode字元的分類,這是用使用角度劃分,而UnicodeBlock是從硬的編碼角度劃分。

1. UnicodeBlock是簡單的數值範圍 (其中可能有些Block中會有一些尚未分配字元的“空號”)。

2. 在一個UnicodeScript中的字元可能分散在多個UnicodeBlock中;

3. 一個UnicodeBlock中的字元可能會被划進多個UnicodeScript中。

判別中文標點符號。

因為中文的標點符號主要存在於以下5個UnicodeBlock中,

U2000-General Punctuation (百分號,千分號,單引號,雙引號等)

U3000-CJK Symbols and Punctuation ( 頓號,句號,書名號,〸,〹,〺 等;PS: 後面三個字元你知道什麼意思嗎? : )    )

UFF00-Halfwidth and Fullwidth Forms ( 大於,小於,等於,括號,感嘆號,加,減,冒號,分號等等)

UFE30-CJK Compatibility Forms  (主要是給豎寫方式使用的括號,以及間斷線﹉,波浪線﹌等)

UFE10-Vertical Forms (主要是一些豎著寫的標點符號,    等等)

 // 根據UnicodeBlock方法判斷中文標點符號
    public boolean isChinesePunctuation(char c) {
        Character.UnicodeBlock ub = Character.UnicodeBlock.of(c);
        if (ub == Character.UnicodeBlock.GENERAL_PUNCTUATION
                || ub == Character.UnicodeBlock.CJK_SYMBOLS_AND_PUNCTUATION
                || ub == Character.UnicodeBlock.HALFWIDTH_AND_FULLWIDTH_FORMS
                || ub == Character.UnicodeBlock.CJK_COMPATIBILITY_FORMS
                || ub == Character.UnicodeBlock.VERTICAL_FORMS) {
            return true;
        } else {
            return false;
        }
    }


static boolean isSymbol(char ch)  
    {  
        if(isCnSymbol(ch)) return true;  
        if(isEnSymbol(ch))return true;  
          
        if(0x2010 <= ch && ch <= 0x2017) return true;  
        if(0x2020 <= ch && ch <= 0x2027) return true;   
        if(0x2B00 <= ch && ch <= 0x2BFF) return true;   
        if(0xFF03 <= ch && ch <= 0xFF06) return true;   
        if(0xFF08 <= ch && ch <= 0xFF0B) return true;  
        if(ch == 0xFF0D || ch == 0xFF0F) return true;  
        if(0xFF1C <= ch && ch <= 0xFF1E) return true;  
        if(ch == 0xFF20 || ch == 0xFF65) return true;  
        if(0xFF3B <= ch && ch <= 0xFF40) return true;  
        if(0xFF5B <= ch && ch <= 0xFF60) return true;  
        if(ch == 0xFF62 || ch == 0xFF63) return true;  
        if(ch == 0x0020 || ch == 0x3000) return true;  
        return false;  
  
    }  
    static boolean isCnSymbol(char ch) {  
          if (0x3004 <= ch && ch <= 0x301C) return true;  
          if (0x3020 <= ch && ch <= 0x303F) return true;  
          return false;  
    }  
    static boolean isEnSymbol(char ch){  
          
          if (ch == 0x40) return true;  
          if (ch == 0x2D || ch == 0x2F) return true;  
          if (0x23 <= ch && ch <= 0x26) return true;  
          if (0x28 <= ch && ch <= 0x2B) return true;          
          if (0x3C <= ch && ch <= 0x3E) return true;          
          if (0x5B <= ch && ch <= 0x60) return true;  
          if (0x7B <= ch && ch <= 0x7E) return true;  
  
          return false;  
        }  
  
    static boolean isPunctuation(char ch){  
          if(isCjkPunc(ch)) return true;  
          if(isEnPunc(ch)) return true;  
            
          if(0x2018 <= ch && ch <= 0x201F) return true;     
          if(ch == 0xFF01 || ch == 0xFF02) return true;  
          if(ch == 0xFF07 || ch == 0xFF0C) return true;         
          if(ch == 0xFF1A || ch == 0xFF1B) return true;  
          if(ch == 0xFF1F || ch == 0xFF61) return true;   
          if(ch == 0xFF0E) return true;  
          if(ch == 0xFF65) return true;   
  
          return false;  
        }  
    static boolean isEnPunc(char ch){  
        if (0x21 <= ch && ch <= 0x22) return true;  
      if (ch == 0x27 || ch == 0x2C) return true;  
      if (ch == 0x2E || ch == 0x3A) return true;  
      if (ch == 0x3B || ch == 0x3F) return true;  
  
      return false;  
    }  
    static boolean isCjkPunc(char ch){  
          if (0x3001 <= ch && ch <= 0x3003) return true;  
          if (0x301D <= ch && ch <= 0x301F) return true;  
  
          return false;  
        }  
方法三、自定義標點符號集合,檢驗(略)

參考:http://bbs.csdn.net/topics/390812840