Answers for "remove from string javascript"

9

how to remove lasr char from string in javascript

str=str.slice(0, -1);
Posted by: Guest on June-21-2020
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
5

javascript remove text from string

var str = "That is like so not cool, I was like totally mad.";
var cleanStr = str.replace(/like/g, "");//replace every "like" with blank ""
Posted by: Guest on August-02-2019
31

javascript replace

var res = str.replace("find", "replace");
Posted by: Guest on October-21-2019
9

how to use the replace method in javascript

let string = 'soandso, my name is soandso';

let replaced = string.replace(/soandso/gi, 'Dylan');

console.log(replaced); //Dylan, my name is Dylan
Posted by: Guest on April-15-2020
7

javascript remove character from string

mystring.replace(/r/g, '')
Posted by: Guest on October-08-2020

Code answers related to "remove from string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language