ronnievanderstegen Posted February 26, 2013 Share Posted February 26, 2013 Hi In the program Numbers on mac I have a column with prices but they are displayed in different shapes, like this: 1.000,00 1.000.00 1000.00 1000,00 1000 I found this code to use the function floatval() <?php function floatvalue($value) { return floatval(preg_replace('#^([-]*[0-9\.,\' ]+?)((\.|,){1}([0-9-]{1,2}))*$#e', "str_replace(array('.', ',', \"'\", ' '), '', '\\1') . '.\\4'",$value)); } ?> Can anyone tell me if I can use this function to make all numbers look like 1000.00? If so how to do this? Is it possible to use the function on a column in Numbers (for Mac)? If so, how to do this? Thanks already for the help. Quote Link to comment https://forums.phpfreaks.com/topic/274988-floatval-numbers-mac/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.