What regex can I use to match only letters, numbers, and one space between each word?

前端 未结 6 861
死守一世寂寞
死守一世寂寞 2021-02-01 04:58

How can I create a regex expression that will match only letters and numbers, and one space between each word?

Good Examples:



        
6条回答
  •  迷失自我
    2021-02-01 05:23

    Most regex implementations support named character classes:

    ^[[:alnum:]]+( [[:alnum:]]+)*$
    

    You could be clever though a little less clear and simplify this to:

    ^([[:alnum:]]+ ?)*$
    

    FYI, the second one allows a spurious space character at the end of the string. If you don't want that stick with the first regex.

    Also as other posters said, if [[:alnum:]] doesn't work for you then you can use [A-Za-z0-9] instead.

提交回复
热议问题