JavaScriptを使用して文字列内のすべてのスペースを削除する方法
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.
-
JavaScriptで文字列の2つの部分を削除するにはどうすればよいですか?
文字列の2つの部分の間のテキストを削除するには、JavaScript正規表現を使用します。 例 次のコードを実行して、括弧内のテキストを削除する方法を学ぶことができます- <html> <head> <script> var str = "Welcome to Qries (website)"; document.write(str);
-
JavaScriptを使用して文字列からすべてのスペースを削除する
問題 文字列を受け取り、新しいスペースのない文字列(すべてのスペースが空の文字列に置き換えられた文字列)を返すJavaScript関数を作成する必要があります。 例 以下はコードです- const str = 'some random string ex a m pl e'; const removeSpaces = (str = '') => { let res = ''; for(let i = 0; i < str.length; i++){ &