JAVA字符串替换多个字符(java字符串替换几种方法)
导语:Java字符串替换( )replaceFirst( )&replaceAll(),你学会了吗?
Java字符串有三种类型的替换方法
取代替换所有取代第一。在这些帮助下,您可以替换字符串中的字符。让我们详细研究一下:
1.Java字符串替换( )方法
描述:
此Java方法返回一个新字符串,该字符串是由用新字符替换每次出现的字符而产生的。
语法:
public Str replace(char oldC, char newC)
参数:
oldCh − old character.(老掉牙的−老字号)
newCh − new character.(新的−新角色)
返回值
此函数通过用newch替换oldCh来返回字符串。
例1
public class Guru99Ex1 { public static void main(String args[]) { String S1 = new String("the quick fox jumped"); System.out.println("Original String is ': " + S1); System.out.println("String after replacing 'fox' with 'dog': " + S1.replace("fox", "dog")); System.out.println("String after replacing all 't' with 'a': " + S1.replace('t', 'a')); }}
产出:
Original String is(原来的绳子是):the quick fox jumped (快跳的狐狸)
将'fox' with 'dog'(“狐狸”改为“狗”)后的字符串:the quick dog jumped(那只敏捷的狗跳了起来)。
用“a”代替“t”之后的字符串:ahe quick fox jumped(一只敏捷的狐狸跳了起来)
2.Java String Replaceall( )
描述
java String replaceAll()方法返回一个字符串,替换匹配正则表达式和替换字符串的所有字符序列。
签署:
public Str replaceAll(String regex, String replacement)
参数:
regx: regular expression(正则表达式)
replacement: replacement sequence of characters(替换:替换字符序列)
例2
public class Guru99Ex2 { public static void main(String args[]) { String str = "Guru99 is a site providing free tutorials"; //remove white spaces String str2 = str.replaceAll("\\s", ""); System.out.println(str2); }}
3.Java-String replaceFirst()方法
描述
该方法替换与该正则表达式匹配的给定字符串的第一个子字符串。
句法
public Str replaceFirst(String rgex, String replacement)
参数
rgex−-给定字符串需要匹配的正则表达式。
替换−替换正则表达式的字符串。
返回值
此方法将结果字符串作为输出返回。
例3:
public class Guru99Ex2 { public static void main(String args[]) { String str = "This website providing free tutorials"; //Only Replace first 's' with '9' String str1 = str.replaceFirst("s", "9"); System.out.println(str1); }}
想了解更多的JAVA知识,记得关注小编哦!
免责声明:本站部份内容由优秀作者和原创用户编辑投稿,本站仅提供存储服务,不拥有所有权,不承担法律责任。若涉嫌侵权/违法的,请与我联系,一经查实立刻删除内容。本文内容由快快网络小凡创作整理编辑!