如果指定的字符不是仅使用正则表达式的空格,如何检入JavaScript?现在我正在使用否定!
做类似下面的代码,但我想避免混淆两件事来避免混淆。
if (!/\s/.test(character))
console.log('this is not a whitespace');
答案 0 :(得分:3)
if (/\S/.test(character))
console.log('this is not a whitespace');
答案 1 :(得分:2)
在正则表达式
中使用否定集合表示法/[^\s]/
这将匹配所有不是空格的东西。