Guest Rodrigo Posted September 26, 2003 Report Share Posted September 26, 2003 Pessoal,Sou novo em programação para Web, então qualquer erro de interpretação, não liguem....No JavaScript eu puxo uma string e essa string pode conter caracteres estranhos como ( ' ) por exemplo.Existe alguma função pronta no JavaScript que eu possa modificar esses caracteres, como por exemplo a função str_replace no php?Fico no aguardo.Grato... Quote Link to comment Share on other sites More sharing options...
0 diraol Posted September 26, 2003 Report Share Posted September 26, 2003 putz cara... to me matando aqui pra pensar e não lembrei da função!!!!!procurei em td quanto é post já...........assim q eu achar eu t passo, eu vi ele faz pouco tempo............ Quote Link to comment Share on other sites More sharing options...
0 jissa Posted September 26, 2003 Report Share Posted September 26, 2003 function trocar_string(velho,novo,texto) { for (var i=0; i<texto.length; i++) { if (texto.substring(i,i+velho.length) == velho) { texto = texto.substring(0,i)+novo+texto.substring(i+velho.length,texto.length) } } return texto; }veja esta funcao.. deve funcionar.. não testei.. qualquer coisa Posta de novo, depois vejo com mais calma.. qualquer coisa eu posto de novo Quote Link to comment Share on other sites More sharing options...
Question
Guest Rodrigo
Pessoal,
Sou novo em programação para Web, então qualquer erro de interpretação, não liguem....
No JavaScript eu puxo uma string e essa string pode conter caracteres estranhos como ( ' ) por exemplo.
Existe alguma função pronta no JavaScript que eu possa modificar esses caracteres, como por exemplo a função str_replace no php?
Fico no aguardo.
Grato...
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.