“JavaScript Удалить символ из строки” Ответ

Удалить первый char javascript

let str = 'Hello';
 
str = str.substring(1);
console.log(str);
 
/*
    Output: ello
*/
Alive Ape

JavaScript Удалить символ из строки

mystring.replace(/r/g, '')
Annoying Antelope

Как удалить символ из строки в JavaScript

newString = originalString.replace('G', ''); // (oldchar, newchar)
Splendid Seahorse

Как удалить букву из строки в JavaScript

substr() – removes a character from a particular index in the String.
replace() – replaces a specific character/string with another character/string.
slice() – extracts parts of a string between the given parameters.
Tired Toucan

Удалить две вещи из строки JavaScript

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));
Dead Deer

Ответы похожие на “JavaScript Удалить символ из строки”

Вопросы похожие на “JavaScript Удалить символ из строки”

Больше похожих ответов на “JavaScript Удалить символ из строки” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования