Is there a method in perl that takes a large number and formats it into postfix characters like 'M', 'K', etc. For example:
number = 9,999,999 output = 10.0M
I can't use things like 'Math::Round' or 'Format::Number' as perl is installed and I cannot install any new modules.