References

String.replaceAll()

Leírás

A replaceAll függvénnyel több a string-ben szereplő szót cserélhetünk le több általnak választott szóra.

Szintaxis

replaceAll(pattern, replacement)

Példa

const text = 'I love cats. Cats are very eary to love. Cats are vwery popular.'
text = text.replaceAll('Cats', 'Dogs')
 
// Expected output: I love cats. Dogs are very eary to love. Dogs are vwery popular.
in this article
back to top