A number given should be formatted for easy reading by separating digits into triads. Format must be made inline via JavaScript, i.e., frameworks / functions are not welcome.
So let’s take a number like this “12345678.91¿ and format it to “12 345 678.91¿. To be shorter I assign it to a variable and hustled up following line which produced desired format:
How it’s made
First there is a string that has to be split somehow into triad. This is pretty simple – I’ve just used Regular expression with match and join methods to get the result back into a string using desired digital group separator (space in the case):
The problem here is that RegExp is staring from left to right and produced wrong (from the task’s point of view) result. There is a two spaces where there shouldn’t be: after the dot and in the last triad (having two digits instead of three). First space I’ve eliminated adding regexp replace function.
Now it seems OK on the right of the dot. But last triad has still two digits. This is because RegExp rules passed to the match function are applied from left to right. So until dot is found it is impossible to predict how triad will be formed. Instead of applying more complicated regexp I’ve decided to reverse numbers before to add group separator.
This way I’ve passed over the problem with the direction rules have been applied to the input. As the result is reversed at this point, I’ve to switch it back to original order adding same functions, this time on the right end.
This is pretty close to desired result nevertheless there is one surplus delimiter before the dot. It might be easily eliminated using replace function.
That’s it.
Some final thoughts:
- What if we have a number instead of a string?
Applying the long line just composed against a number will produce an error…
Solution?
Just add one more step in front of all the others:
- What if a number is required as result?
Right! Still another step – multiplication by 1 – at the end.
Now you know how it's made ;-)
by: myselfrandhawa on 2011-10-14 at 05:41:26ID: 32434