代码块
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
Posted anitinaj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了String replace多个符号或字符相关的知识,希望对你有一定的参考价值。
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多个符号或字符的主要内容,如果未能解决你的问题,请参考以下文章
JS中用正则扩展string的trim方法,里面的正则表达式是这样的(/(^\s*)(\s*$)/g, ""); 请问这代表啥意思