Answers for "delete some part of text with node js"

24

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
0

remove text javascript

str = str.replace(/[^0-9\.]+/g, "");
Posted by: Guest on October-13-2021

Code answers related to "delete some part of text with node js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language