“JavaScript Usuń znak z ciągu” Kod odpowiedzi

Usuń pierwszy Char JavaScript

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

JavaScript Usuń znak z ciągu

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

Jak usunąć znak z łańcucha w JavaScript

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

Jak usunąć list z ciągu w 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

Usuń dwie rzeczy z ciągu 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

Odpowiedzi podobne do “JavaScript Usuń znak z ciągu”

Pytania podobne do “JavaScript Usuń znak z ciągu”

Więcej pokrewnych odpowiedzi na “JavaScript Usuń znak z ciągu” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu