码迷,mamicode.com
首页 > 其他好文 > 详细

String replace多个符号或字符

时间:2018-03-27 10:58:09      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:class   AC   div   body   ffffff   replace   eal   col   span   

代码块

1     public static void main(String[] args) {
2         test t = new test();
3         String a = "a+-b+ -c+ -d -e";
4         System.out.println(a);
5         System.out.println(a.replaceAll("(-|\\+| )",","));
6     }

运行结果

a+-b+ -c+ -d -e 
a,,b,,,c,,,d,,e

String replace多个符号或字符

标签:class   AC   div   body   ffffff   replace   eal   col   span   

原文地址:https://www.cnblogs.com/anitinaj/p/8656132.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!