Ask Your Question
2

How can I use regex to match only numbers and commas?

asked 2022-01-14 11:00:00 +0000

lalupa gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2021-12-17 03:00:00 +0000

scrum gravatar image

You can use the following regex pattern to match only numbers and commas:

^[0-9,]+$

This pattern matches any string that contains only digits and commas. The ^ and $ characters mark the beginning and end of the input string, respectively. The + sign means that one or more of the preceding characters or character sets are allowed, and [0-9,] matches any digit or comma.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-01-14 11:00:00 +0000

Seen: 12 times

Last updated: Dec 17 '21