Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for a way to covert a numeric string(as shown in the subject) to a proper one like $40,000,000.

Does php offer a function to do this?

Thanks for the help!

share|improve this question
There's no built-in function for this sort of thing. But once you've got the string converted to a number, you can use number_format() to pretty-fy the number with commas. – Marc B Mar 5 '11 at 20:32
@Marc money_format() even. – Long Ears Mar 5 '11 at 20:34

1 Answer

up vote 9 down vote accepted
$str = str_replace(' billion','000000000',$str);
$str = str_replace(' million','000000',$str);
$str = str_replace(' thousand','000',$str);
$str = str_replace(' hundred','00'$str);

setlocale(LC_MONETARY, 'en_US');    
$str = money_format('%i',$str);    
share|improve this answer
+1 for short and sweet. – Ken Downs Mar 5 '11 at 20:36
So obvious.. thanks! – Jeff Mar 5 '11 at 20:59
Thanks kindly :) – Orbit Mar 6 '11 at 2:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.