RegExp禁止空格[重复]

7y4bm7vi  于 2023-10-22  发布在  其他
关注(0)|答案(1)|浏览(92)

此问题已在此处有答案

Backslashes - Regular Expression - Javascript(2个答案)
关闭27天前。
我想用RegExp检查一个字符串是否包含空格,但我想用regexp模式作为字符串,所以:

new RegExp('^\S+$').test("test")
new RegExp('^\S+$').test("te st")

两者都是假的。

093gszye

093gszye1#

字符串中的\S需要写成\\S

new RegExp('^\\S+$').test("test")  // true
new RegExp('^\\S+$').test("te st") // false

相关问题