Java——去除字符串中的中文
生活随笔
收集整理的這篇文章主要介紹了
Java——去除字符串中的中文
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
import java.util.regex.Matcher;
import java.util.regex.Pattern;public class RemoveStrChinese {private static String REGEX_CHINESE = "[\u4e00-\u9fa5]";// 中文正則public static void main(String[] args) {String str = "中文123中文qwer";// 去除中文
// Pattern pat = Pattern.compile(REGEX_CHINESE);
// Matcher mat = pat.matcher(str);
// String string = mat.replaceAll("");
String string = str.replaceAll(REGEX_CHINESE, "");System.out.println(string);}
}
?
轉載于:https://www.cnblogs.com/it-mh/p/10556555.html
總結
以上是生活随笔為你收集整理的Java——去除字符串中的中文的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 弹力
- 下一篇: CDQ分治 Jam's problem