JavaScript로 문자열의 모든 공백을 제거하려면 RegEx:
를 사용할 수 있습니다.const sentence = "This sentence has 6 white space characters."
console.log(sentence.replace(/\s/g, ""))
// "Thissentencehas6whitespacecharacters."
위의 예는 결과만 로그아웃하고 변경 사항은 저장하지 않습니다.
텍스트에서 공백을 영구적으로 제거하려면 새 변수를 만들고 sentence.replace(/\s/g, "")
값을 할당해야 합니다. :
// Sentence with whitespaces
const sentence = "This sentence has 6 white space characters."
// Sentence without whitespace
const sentenceRemoveWhiteSpace = sentence.replace(/\s/g, "")
console.log(sentenceRemoveWhiteSpace)
// Thissentencehas6whitespacecharacters.