Jquery: Replace string with values from an array

11,337

Solution 1

You either create a custom regexp or you loop over the string and replace manually.

array.forEach(function( word ) {
    string = string.replace( new RegExp( word, 'g' ), '' );
});

or

var regexp = new RegExp( array.join( '|' ), 'g' );

string = string.replace( regexp, '' );

Solution 2

string.replace(new RegExp(array.join("|"), "g"), "");
Share:
11,337
Bennett
Author by

Bennett

Updated on June 19, 2022

Comments

  • Bennett
    Bennett almost 2 years

    Say I have something like this:

    var array = [cat,dog,fish];
    var string = 'The cat and dog ate the fish.';
    

    I want to clear all those values from a string

    var result = string.replace(array,"");
    

    The result would end up being: The and ate the .

    Right now, replace() appears to only be replacing one value from the array. How can I make it so all/multiple values from the array are replaced in the string?

    Thanks!