+ 1
program for word deletion from a string
can you suggest a code to delete a word from a string
2 Antworten
+ 1
var input frase = "ll1ll2ll3ll5ll7"; ouput "12357";
PHP: str_replace("ll", "", $frase);
JavaScript: frase.replace('ll', '');
Obs. Search more about replace!
+ 1
thank you