R3g fonctionnaire certifié ITIL | benou a écrit a écrit :
je l'avais déjà donné, mais bon ... cado !
Code :
- public static String replace(String s, String replaced, String replacing) {
- StringBuffer tmp = new StringBuffer(s);
- int i = 0, debut, fin;
- char c = replaced.charAt(0);
- while (i < tmp.length()) {
- while ((i < tmp.length()) && (tmp.charAt(i) != c))
- i++;
- debut = i;
- i++;
- fin = 1;
- while ((i < tmp.length()) && (fin < replaced.length()) && (tmp.charAt(i) == replaced.charAt(fin))) {
- fin++;
- i++;
- }
- if ((i <= tmp.length()) && (fin == replaced.length())) {
- tmp.replace(debut, debut+fin, replacing);
- i = debut + replacing.length();
- }
- }
- return tmp.toString();
- }
|
|
Merci
Citation :
String est final => pas de subclass !
|
Euh, oui, bon, jve aller dormir une paire d'heures moi !
---------------
Au royaume des sourds, les borgnes sont sourds.
|