Regex for Comma Separated Number or Just Number

前端 未结 5 498
情歌与酒
情歌与酒 2021-01-22 08:18

This is something of a follow up from a previous question. The requirements have changed, and I\'m looking for some help with coming up with regex for either a comma separated n

5条回答
  •  孤街浪徒
    2021-01-22 09:02

    Try this:

    ^\d{1,3}(?:(?:,\d{3})+|\d*)$
    

    This will match any sequence that begins with one to three digits, followed by either

    • one or more segments of a comma followed by three digits, or
    • zero or more digits.

提交回复
热议问题