正則替換字串的全形 半形標點符號
阿新 • • 發佈:2018-12-19
感謝【火龍果】,欽佩他的研究精神。http://topic.csdn.net/u/20080925/15/41b814bf-fcaf-4b37-be91-10561a102768.html測試程式碼如下:
- class T {
- publicstaticvoid main(String... args) {
- String str = "!!!!去符號標號!!當然。!!..**半形";
- System.out.println(str);
- System.out.println(str.replaceAll("//p{Punct}", ""));
- System.out.println(str.replaceAll("//pP", ""));
- }
- }
- str = str.replaceAll("[//pP‘’“”]", "");