📌  相关文章
📜  如何在javascript代码示例中检查字符串是否仅包含空格

📅  最后修改于: 2022-03-11 15:02:35.554000             🧑  作者: Mango

代码示例1
let str = "    ";
if (!str.replace(/\s/g, "").length) {
  console.log("string only contains whitespace (ie. spaces, tabs or line breaks)");
}