hi there!
I want a function which does the following...
I am creating a video application for copy frame to frame, and I will require a function that can convert a float into a large integer (int64) the format looks like :
1024,123450000
what I need is to remove the comma (must be regional independent) so it looks like this :
1024123450000 -- YES! , trailing zeros must still be there
I dont care how you solve it.. how lame this looks, I will however accept the most elegant solution..
Start Free Trial