java實現漢字判斷+中文符號判斷

java通常的中文判斷都是利用正則表達式java Pattern pattern = Pattern.compile("[\u4e00-\u9fcc]+"); System.out.println(pattern.matcher(str).find()); 或者正則表達式 System.out.println(str.matches("[\u4e00-\u9fcc]+")); 這種方式會有一些生僻
相關文章
相關標籤/搜索