-
Notifications
You must be signed in to change notification settings - Fork 459
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FlxStringUtil.formatMoney #1754
Comments
Didn't even know this function exists. BTW could you add a String parameter named `Separator' or something? Since I want the "major quantites" separated by a space instead of dots or commas. |
Yeah, that |
Whoops! I edited the comment and Slack didn't seem to update that. |
Then we'd have two arguments that do almost the same thing. Which argument would take precedence? Seems a bit messy. |
var price:Int = 60; // in pence
trace('£' + FlxStringUtil.formatMoney(this.price / 100));
// shows £.60;
Should show as £0.60
The text was updated successfully, but these errors were encountered: