How would I convert a string holding a number into its numeric value in Perl?
|
You don't need to convert it at all:
|
|||
|
Perl is a context-based language. It doesn't do its work according to the data you give it. Instead, it figures out how to treat the data based on the operators you use and the context in which you use them. If you do numbers sorts of things, you get numbers:
If you do strings sorts of things, you get strings:
Perl mostly figures out what to do and it's mostly right. Another way of saying the same thing is that Perl cares more about the verbs than it does the nouns. Are you trying to do something and it isn't working? |
|||||||||||
|
|
This is a simple solution: Example 1
Result
Example 2
Result
|
||||
|
|
|
Google lead me here while searching on the same question phill asked (sorting floats) so I figured it would be worth posting the answer despite the thread being kind of old. I'm new to perl and am still getting my head wrapped around it but brian d foy's statement "Perl cares more about the verbs than it does the nouns." above really hits the nail on the head. You don't need to convert the strings to floats before applying the sort. You need to tell the sort to sort the values as numbers and not strings. i.e.
See http://perldoc.perl.org/functions/sort.html for more details on sort |
|||
|
|
|
As I understand it int() is not intended as a 'cast' function for designating data type it's simply being (ab)used here to define the context as an arithmetic one. I've (ab)used (0+$val) in the past to ensure that $val is treated as a number. |
||||
|
|
|
Perl really only has three types: scalars, arrays, and hashes. And even that distinction is arguable. ;) The way each variable is treated depends on what you do with it:
|
|||||||||
|
|
In comparisons it makes a difference if a scalar is a number of a string. And it is not always decidable. I can report a case where perl retrieved a float in "scientific" notation and used that same a few lines below in a comparison:
And here |
||||
|
|
|
I know this has been long answered, but this has been working for me in handling ints and floats from strings:
of course, you need to trim your string first. |
|||
|
protected by Community♦ Jan 24 at 20:17
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
