달러 금액을 파이썬 문자열의 ""태그로 대체해야합니다. 이것은 내가 지금까지 알아 낸 것입니다 : 여기String 모든 달러 금액을 특정 문자열로 바꿉니다.
내 문자열입니다 : 내가 제대로 모든 달러 금액을 찾을 수있는이 정규 표현식으로
s = 'Accounts and current portion of notes receivable, net of allowances of $2,199 and $2,506 at July 2, 2011 and October 2, 2010, respectively'
가.
re.findall(r"[\$]{1}[\d,]+\.?\d{0,2}",s)
저를 제공합니다
['$2,199', '$2,506']
을 그러나, 나는 원래 문자열에서 ""와 달러 금액을 대체합니다. 어떻게해야합니까?
예상 출력 :
'Accounts and current portion of notes receivable, net of allowances of <amount> and <amount> at July 2, 2011 and October 2, 2010, respectively'