----- Original Message -----
From: Manish Sapariya <[EMAIL PROTECTED]>
Date: Wednesday, April 6, 2005 10:17 am
Subject: Converting a retruned string value to a number

> Hi List,
HellO,
> How do i convert a string variable returned by
> some XPath API into a number so that I can 
> compare it or loop using this number.
You should not need to convert, Perl is smart enough to figure it out on it's 
own.

#!PERL
use warnings;
use strict;

my $te="123";
print $te if $te eq "123" && $te == 123;

> 
> I am reading one number from XML and I want to
> use it for looping.
> 
> Thanks and Regards,
> Manish
> 
> -- 
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> <http://learn.perl.org/> <http://learn.perl.org/first-response>
> 
> 
> 


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to