Answers for "how we can remove all symply and number from string in jscript"

0

remove all numbers from string javascript

const string = "hello world 123";

// remove all digits from the string
const newString = string.replace(/\d/g, "") // "hello world "
Posted by: Guest on May-30-2021
0

string to number javascript & remove text

var p = $( "p" ).last();
var offset = p.offset();
p.html( "left: " + offset.left + ", top: " + offset.top );
Posted by: Guest on October-13-2021

Code answers related to "how we can remove all symply and number from string in jscript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language