Answers for "js remove , from string"

19

How to remove text from a string in javscript

var ret = "data-123".replace('data-','');
console.log(ret);   //prints: 123
Posted by: Guest on March-25-2020
2

string replace javascript

let re = /apples/gi; 
let str = "Apples are round, and apples are juicy.";
let newstr = str.replace(re, "oranges"); 
console.log(newstr)

output:

"oranges are round, and oranges are juicy."
Posted by: Guest on November-23-2020

Code answers related to "js remove , from string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language