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