1
Answer

Remove the unwanted characters form string using javascript

string output =3;#Paul, John;2;#Rajamanickam, Gowtham;
 
i want to remove the 3;# and 2;#
 
my output =Paul, John;Rajamanickam, Gowtham;
 
anyone help to remove the characters from the string using javascript.

Answers (1)