コードは非常に実用的です。ここではナンセンスではありません。ただそれを提示してください。
主な機能は、文字列に中国語の文字が含まれているかどうかを判断し、それを ASCLL に置き換えることです。
private static String regEx = "[//u4e00-//u9fa5]"; /** * 文字列に中国語の文字が含まれているかどうかを判断し、ASCLL に置き換えます * * @param str_para * @return str_result */ private static String is Chinese_Replace( String str_para ) { パターン p = Pattern.compile( regEx ); 文字列 str_result = 文字列 str_0 = ""; str_1 = ""; 文字列 str_data[] = null; 文字列 str_return_reslut = ""; if ( str_result != null && str_result.trim().length() > 0 ) { try { str_data = str_result.split( "" ); for ( int i = 0; i < str_data.length; i++ ) { Matcher m = p.matcher( str_data[i] ); /* Ld(str_data[i]); */ int count = 0; if ( m.find() ) { str_result = m.group( 0 ); getBytes( "GBK" ); str_0 = Integer.toHexString( b[0] ); ); str_return_reslut = str_return_reslut + "/" + conver10( str_0 ) + conver10( str_1 ) + "/"; } else { str_return_reslut = str_return_reslut + str_data[i] } } } catch ( NumberFormatException e ) { e.printStackTrace() ; } catch (UnsupportedEncodingException ) { e.printStackTrace(); } } else { return(str_return_reslut); } return(str_return_reslut); } /* 文字列を 10 進数に変換 */ public static int conver10( String str_0 ) { return(Integer.parseInt( str_0.substring) ( str_0.length() - 2, str_0.length() ), 16 ) );
需要が高くない場所で使用できる、もう少し単純なコードを見てみましょう。
import java.util.regex.Matcher;import java.util.regex.Pattern;public クラスデモ {static String regEx = "[/u4e00-/u9fa5]";static Pattern pat = Pattern.compile(regEx);public static void main(String[] args) {String input = "地獄の世界!";System.out.println(isContains Chinese(input));input = "hello world";System.out.println(isContains Chinese(input));} public static boolean isContains Chinese(String str){Matcher matcher = pat.matcher(str);boolean flg = false;if (matcher.find()) {flg = true;}flg を返す;}
最後に、さまざまな文字の Unicode エンコーディングの範囲を添付します。
* 漢字: [0x4e00,0x9fa5] (または 10 進数 [19968,40869])
* 数値: [0x30,0x39] (または 10 進数 [48, 57])
※小文字:[0x61,0x7a](または10進数[97,122])
※大文字:[0x41,0x5a](または10進数[65,90])