Salut,
Il y a différents moyens de faire ce genre de chose.
Pour les cas que tu cites, il y a String.replace(string1, string2) qui remplace toutes les occurences de string1 par string2.
1 2 3
| String s = "cwww/javatpoint/com/java/string/split";
s = s.replace("com","fr");
System.out.println(s); |
va afficher
cwww/javatpoint/fr/java/string/split
tu peux enchaîner :
1 2 3
| String s = "cwww/javatpoint/com/java/string/split";
s = s.replace("com","fr").replace("split","java");
System.out.println(s); |
qui va afficher
cwww/javatpoint/fr/java/string/java
Partager