1: 2: 3: 4: 5: 6: 7:
function ascii_only(str) { return str.replace(/[^\x20-\x7E]/g, ''); // ASCII chars " " thru "~" } // // And then // var my_new_string = ascii_only(my_string);