Regexp示例,用于输入在开头和结尾处接受一个或多个空格但不在中间

问题描述 投票:1回答:1

正则表达式= / ^([A-ZA-Z0-9 @_ \ S#。] +)$ /;我试过这个并没有工作

javascript angular2-forms
1个回答
0
投票

这样的东西可以帮到你吗?

// no spaces in the middle at all
regexp=/^[ ]{,2}[^ ]+?[ ]{,2}$/

// no two spaces in the middle, one is ok
regexp=/^[ ]{,2}[^ ]+?(?!  )[^ ][ ]{,2}$/
© www.soinside.com 2019 - 2024. All rights reserved.