JavaScript 使用正則表達式選取空白字符

var testString = "How many spaces are there in this sentence?";正則表達式

var expression = /\s+/g;express

var spaceCount = testString.match(expression).length;this

 

咱們也可使用正則表達式選擇器 \s 來查找一個字符串中的空白。spa

空白字符有 " " (空格符)、\r (回車符)、\n (換行符)、\t (製表符) 和 \f (換頁符)。code

空白正則表達式相似於:字符串

/\s+/gio

相關文章
相關標籤/搜索