在正则表达式中查看没有特殊字符的数字

see numbers in regex with out special character

我只想在 python 中看到没有这个特殊字符“,”的数字,带有正则表达式的逗号,数字是这样的: 143,000 is price 126,479,000 hours you worked 我只想看到 完全匹配 这样的: 143000 126479000

import re


my_text = '1,222,222 test'

my_out = re.search(r'[0-9|,]{1,}',my_text).group().replace(',','')

print(my_out)