I want to match values having multiple comma in them. I'm able to match values with only 1 comma. regex: (\$\d+\,\d+)
Example Value: $567,76
but i need to match this value $567,76,87
but this regex is not working.
Try this pattern, maybe it could help.
^\$\d+(,\d+)*$
This will match on
$567
$567,76
$567,76,87
but not
$567,76,87,
.Net
button)If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With