Regex - match everything without whitespace

前端 未结 1 586
再見小時候
再見小時候 2021-01-17 10:05

I now using in Regex this expressions,

([\\x20-\\x7E]+) - match everything with space

([\\x21-\\x7E]+) - match everyth

1条回答
  •  执笔经年
    2021-01-17 10:26

    To match everything but whitespace use:

    [^\s]+
    

    0 讨论(0)
提交回复
热议问题