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

字符串替换函数

时间:2019-07-30 21:28:39      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:调用   col   abc   regex   src   alt   you   print   replace   

字符串替换函数

replace(String oldStr, String newStr)

用于将调用此函数的字符串内的子字符串oldStr替换成字符串newStr
oldStr 为准备要替换的字符串
newStr 为准备替换成的字符串

replaceFirst(String regex, String replacement)

用于将调用此函数的字符串内满足正则匹配regex的第一个字符串替换成字符串newStr


replaceFirst(String regex, String replacement)

用于将调用此函数的字符串内满足正则匹配regex的所有字符串替换成字符串newStr

 

public class ReplaceDemo {
    public static void main(String[] args) {
        String str = new String("abcd001, I love you, please abcd001 trust me");
        System.out.println("Replace用法 :" + str.replace("abcd001", "Shuang"));
        System.out.println("ReplaceFirst用法 :" + str.replaceFirst("\\b\\w+001\\b", "Shuang"));
        System.out.println("ReplaceAll用法 :" + str.replaceAll("\\b\\w+001\\b", "Shuang"));
    }
}

技术图片

 

字符串替换函数

标签:调用   col   abc   regex   src   alt   you   print   replace   

原文地址:https://www.cnblogs.com/Sinkinghost/p/11272787.html

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