我有一个文本框字段,我想规范输入的内容。
我不希望用户输入更多或更少的 6-10 个字符。这是我用于限制字符的正则表达式 ^.{6,10}$ 我让这部分工作,但我也不希望用户输入空格(空格)。现在我能够从输入的开头和输入的结尾检测空格,但如果用户在文本中间输入空格,则不能。见例子。
" testing" = regulator detects the space in the beginning. regex i use ^[^\s].+[^\s]$
"testing " = regulator detects the space in the end. regex i use here is same as abow
"test ing" = regulator does not detect the space in the middle. tried different regex with no luck.
我怎样才能创建一个能满足我所有要求的调节器?