Here you can find the source of isChina(String str)
public static boolean isChina(String str)
//package com.java2s; /*//w ww .j av a 2s . co m * Copyright (c) 2014. Lorem ipsum dolor sit amet, consectetur adipiscing elit. * http://www.apache.org/licenses/LICENSE-2.0 */ public class Main { public static boolean isChina(String str) { return str.matches("[\\u4E00-\\u9FA5]+"); } }