简体   繁体   中英

How can i make Jquery replace() pick all instances of a word in a statement and replace it once

I noticed that Javascript inbuilt replace function cannot replace more that one particular character at a go.

I have a String say var word = "sony sony sony is good"

but when i want to replace all sony with apple.

var res = word .replace("sony", "apple");

I notice it doesnt replace all sony, rather it replaces them one after the other.

How can I make javascript , change all instance of a string to another at once ?

You can simply use the replace with regex with the g (for global parameter ) to replace all:

 var sentence = "sony sony sony is good" console.log(sentence.replace(/sony/g, 'apple'))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM