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

前端 未结 6 858
死守一世寂寞
死守一世寂寞 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:18

    (?:[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

提交回复
热议问题