Fonction

eax Messages postés 728 Date d'inscription jeudi 20 juin 2002 Statut Membre Dernière intervention 7 novembre 2007 - 27 avril 2003 à 18:41
eax Messages postés 728 Date d'inscription jeudi 20 juin 2002 Statut Membre Dernière intervention 7 novembre 2007 - 5 juin 2003 à 09:08

2 réponses

mrshardax Messages postés 47 Date d'inscription jeudi 6 février 2003 Statut Membre Dernière intervention 22 mars 2006 2
4 juin 2003 à 17:45
Je pense pas que ca existe, en tout cas, je l ai pas trouver, alors, j ai fait ca :

function replace(main_string,search_string,replace_string) {
var x ;
var principal_string = main_string ;
x = principal_string.indexOf(search_string,0) ;

while( x != -1) {

principal_string = principal_string.substring(0,x) + replace_string + principal_string.substring(x+search_string.length,principal_string.length) ; 

x = principal_string.indexOf(search_string,x)
}
return principal_string ;
}
0
eax Messages postés 728 Date d'inscription jeudi 20 juin 2002 Statut Membre Dernière intervention 7 novembre 2007 2
5 juin 2003 à 09:08
ah merci c cool, je vais tester ça
bye

:big) Sylvain [[mailto:bitsenfolie@free.fr email]] [web]
0
Rejoignez-nous