web中正则表达式判断字符串是否为空
时间: 2023-11-12 11:05:36 浏览: 149
判断字符串是否为空
可以使用正则表达式 `^\s*$` 来判断一个字符串是否为空。这个正则表达式表示以任意数量的空白字符开头和结尾,中间没有其他字符。可以使用 JavaScript 中的 `test()` 函数来进行判断,例如:
```
const str = " ";
const regex = /^\s*$/;
const isEmpty = regex.test(str);
console.log(isEmpty); // 输出 true
```
阅读全文