// regex pattern
String filterPattern = "<[^>]+>";
Sring oriStr = "< b>我是小胖< /b>"
System.out.println(oriStr.replaceAll(fileterPattern, "");
// 如果 source 很長的話,
可以用 pattern & match 來處理, 才不會浪費 memory
// regex pattern
String filterPattern = "<[^>]+>";
Sring oriStr = "< b>我是小胖< /b>"
System.out.println(oriStr.replaceAll(fileterPattern, "");
0 意見:
張貼留言