in reply to
Perl equivalent of JavaScript parseInt()?
Can someone point me to where I might be able to find such a beast in perl? (i.e. a way to get 96 from 60.909769331364245)
For dealing with hex strings,
print hex("60.909769331364245");
displays "96".
Comment on
Re: JavaScript parseInt()
Download
Code
In Section
Seekers of Perl Wisdom