parseint-r
v1.1.0
Published
THE ultimate javascript function to parse strings (or even objects) to integers!
Downloads
2
Readme
parseint
Let's say you've got a word or a string that
, and you need to parse it to an integer. What function would you use?
If your answer was parseInt(that)
, then you're totally wrong and should be ashamed of yourself. The only correct method is this one.
This will work even on strings in languages not english!
implementation
- download the script and load it before the end of your
<body>
<script src="parseint.js"></script>
<script src="main.js"></script> <!-- your own main script -->
</body>
- Call the
parseint
method on your wantedstring
Console.log(parseint('four')); // 4
Console.log(parseint('vier')); // 4
Console.log(parseint('quatre')); // 4
Console.log(parseint('四')); // 4
Console.log(parseint('4')); // 4
license
parseint
is licensed under a Creative Commons Attribution 4.0 International License. No warranty whatsoever.