vote up 2 vote down star
1

How would I convert a string holding a number into an integer in Perl?

flag

70% accept rate

6 Answers

vote up 26 vote down check

You don't need to convert it at all:

% perl -e 'print "5.45" + 0.1;'
5.55
link|flag
vote up 0 vote down

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?

link|flag
vote up 1 vote down

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.

link|flag
The author has accepted an answer already. So it is fairly obvious that it answered the question. – Brad Gilbert Oct 30 at 15:06
vote up 1 vote down

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: 1 * $str

link|flag
vote up 12 vote down

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:

# numeric addition with strings
my $sum = '5.45' + '0.01'; # 5.46

If you do strings sorts of things, you get strings:

# string replication with numbers
my $string = ( 44/2 ) x 3; # "22.522.522.5"

Perl mostly figures out what to do and it's mostly right.

Are you trying to do something and it isn't working?

link|flag
vote up 2 vote down

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

link|flag
Perl has many more types than, but for single values, it's just a single value. – brian d foy Nov 14 '08 at 3:02
you can also add 0 – Nathan Fellman Mar 31 at 19:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.