Example 1: remove first char javascript
let str = 'Hello';
str = str.substring(1);
console.log(str);
/*
Output: ello
*/
Example 2: javascript remove character from string
mystring.replace(/r/g, '')
Example 3: js remove string from string
var ret = "data-123".replace('data-','');
console.log(ret); //prints: 123
Example 4: js remove string from string
var ret = "data-123".replace(/data-/g,'');
Example 5: remove two things from javascript string
var removeUselessWords = function(txt) {
var uselessWordsArray =
[
"a", "at", "be", "can", "cant", "could", "couldnt",
"do", "does", "how", "i", "in", "is", "many", "much", "of",
"on", "or", "should", "shouldnt", "so", "such", "the",
"them", "they", "to", "us", "we", "what", "who", "why",
"with", "wont", "would", "wouldnt", "you"
];
var expStr = uselessWordsArray.join("|");
return txt.replace(new RegExp('\\b(' + expStr + ')\\b', 'gi'), ' ')
.replace(/\s{2,}/g, ' ');
}
var str = "The person is going on a walk in the park. The person told us to do what we need to do in the park";
console.log(removeUselessWords(str));
Example 6: Remove character from end of string javascript
let str = "12345.00";
str = str.slice(0, -1);
console.log(str);