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

后端 未结 6 978
执笔经年
执笔经年 2021-02-01 05:24

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:26
    (?:[a-zA-Z0-9]+[ ])+[a-zA-Z0-9]+
    

    If I understand you correctly the above regex should work. See screenshot below:

    screenshot http://img136.imageshack.us/img136/6871/screenshotkiki056.png

    0 讨论(0)
  • 2021-02-01 05:29

    This would match a word

    '[a-zA-Z0-9]+\ ?'
    
    0 讨论(0)
  • 2021-02-01 05:31
    ^([a-zA-Z0-9]+\s?)*$
    

    its works

    0 讨论(0)
  • 2021-02-01 05:50

    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.

    0 讨论(0)
  • 2021-02-01 05:50
    ([a-zA-Z0-9]+ ?)+?
    
    0 讨论(0)
  • 2021-02-01 05:53
    ^[a-zA-Z]+([\s][a-zA-Z]+)*$
    
    0 讨论(0)
提交回复
热议问题