How would I convert a string holding a number into an integer in Perl?
|
|
You don't need to convert it at all:
|
||
|
|
|
|
Um, correct me if I'm wrong, but calling sort on an array of floats will produce a different ordering than if those numbers are all converted to strings before being sorted. Thus, Perl's automatic handling is not always enough. I know there's an int() function, but there doesn't seem to be a float() function. What is it called? |
||
|
|
|
|
I think the author wants a way to ensure that a value is converted to a numeric value. For example, I have the following code that converts to integer values: $val = int($val || 0); This will convert "25" to "25, "000025" to "25", blank space to 0, and the bogus character string "Bozo" to 0. However, this will only handle integers. Is there a way to do the same thing only with floats instead of integers? This way, the string "0000000.25" will convert to .25 and "Hello Dolly0.0" will convert to 0.0? This is useful, for example, if you're reading spreadsheet cells into a database. If you're inputting into an oracle 'Number' field, you want all invalid and blank values to be input as 0. |
||
|
|
|
Take what I say with a grain of salt, but it seems like you sometimes DO need to convert it, for example, when producing JSON output with floats in it. I never figured out the right way to do it, so I just multiplied my string by one: |
||
|
|
|
|
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. Are you trying to do something and it isn't working? |
|||
|
|
|
|
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: perl -e "print 5.4 . 3.4;" 5.43.4 perl -e "print '5.4' + '3.4';" 8.8 |
||||
|
