jQuery remove string from string

Sam Deering
Share

This is how you might go about using jQuery to remove string from string so to speak. The example below will hopefully clarify what I mean. It uses jQuery.grep() which is a really cool search function – It’s kind of a PHP substring equivalent… kind of anyways.

As always just copy, paste, run using Firebug to test out and experiment.

(function($) {
var myFruits = "Apples, Bananas, Mangos, Blackberries, Oranges";
myFruits = myFruits.replace(/bMangos(, |$)/gi, "");
 
var myFruits = "Apples, Bananas, Mangos, Blackberries, Oranges";
var result = $.grep(myFruits.split(', '), function(v) { return v != "Mangos"; }).join(', ');
console.log(result);
 
function filterOut(my_str, t) { //string, term
  return $.grep(my_str.split(', '), function(v) { return v != t; }).join(', ');
}
})(jQuery);

//output: Apples, Bananas, Blackberries, Oranges