Posts by Bruno Peralva • 1 point
1 post
-
0
votes5
answers23456
viewsA: Add character in the middle of a string
If you mean insert one string into the other: function inserirTexto(TEXTO_ORIGEM, TEXTO_INSERIDO, INDICE) { return("" + TEXTO_ORIGEM.substring(0, INDICE) + TEXTO_INSERIDO +…