Answers for "how to 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
1

remove occurrence in string pytthon

str="it is icy"
print str.replace("i", "")
Posted by: Guest on June-26-2020

Code answers related to "how to remove , from string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language