I'm working on a game that needs to display points or score in a Currency format, but I want to use Sprite Fonts.
So, 10000 should be $10,000 without the decimals.
Any thoughts on this?
Thanx!
"$" & RegexReplace(str(10000),"\B(?=(\d{3})+(?!\d))","g", ",")
just replace the 10000 with your score variable.
Develop games in your browser. Powerful, performant & highly capable.
—
Thanx !!!