What is the quantifier to print only three digit numbers in a string in Java regular expressions?
Input : 232,60,121,600,1980
Output : 232,121,600
Instead my output is coming as:
Output : 232,121,600,198
I am using (\\d{3})
. What quantifier should I use in order to print only three digit numbers?