Regex to check if whitespace present?

后端 未结 5 1101
误落风尘
误落风尘 2021-02-13 01:08

Seems pretty simple, but cannot figure out why this javascript code isn\'t working returning false, when expecting true) - I\'m guessing it has got to do something with the esca

5条回答
  •  情歌与酒
    2021-02-13 02:08

    var inValid = /^/\s/;
    var value = "test value";
    var k = inValid.test(value);
    alert(k);

提交回复
热议问题