Java字符串中删除指定子字符串的方法简介
程序员文章站
2024-03-07 17:29:03
有些字符串是我们存储某种类型名称的,往往有逗号‘,'或者其他符号来分隔。如果我们删除某一个参数时,往往没有数组或者列表那么方便。但是,如果有了下面这个方法,我们同样可以做好...
有些字符串是我们存储某种类型名称的,往往有逗号‘,'或者其他符号来分隔。如果我们删除某一个参数时,往往没有数组或者列表那么方便。但是,如果有了下面这个方法,我们同样可以做好。
public class test3 { /** * @param args */ public static void main(string[] args) { //要切割的字符串 string s = "123.jpg,113.jpg,121.jpg,122.jpg,131.jpg"; string sub = ""; system.out.println("编译前:"+s); //调用方法 sub = s.replaceall( ",113.jpg|113.jpg,","");//.replaceall( ",122.jpg|122.jpg,",""); system.out.println("编译后:"+sub); } }
打印结果:
编译前:123.jpg,113.jpg,121.jpg,122.jpg,131.jpg 编译后:123.jpg,121.jpg,122.jpg,131.jpg
下面回顾一下jdk1.6中的replaceall方法说明:
replaceall
public string replaceall(string regex,
string replacement)使用给定的 replacement 替换此字符串所有匹配给定的正则表达式的子字符串。
调用此方法的 str.replaceall(regex, repl) 形式与以下表达式产生的结果完全相同:
pattern.compile(regex).matcher(str).replaceall(repl)
注意,在替代字符串中使用反斜杠 (\) 和美元符号 ($) 与将其视为字面值替代字符串所得的结果可能不同;请参阅 matcher.replaceall。如有需要,可使用 matcher.quotereplacement(java.lang.string) 取消这些字符的特殊含义。
参数:
regex - 用来匹配此字符串的正则表达式
replacement - 用来替换每个匹配项的字符串
返回:
所得 string
抛出:
patternsyntaxexception - 如果正则表达式的语法无效
下一篇: php图形jpgraph操作实例分析