in reply to Re: Can't find Unicode property definition
in thread Can't find Unicode property definition

Well I tried that and it worked. Thanx alot. But now I have another problem.
my $alive = ping(host => "$URL");
In the above statement the $URL now refers to ping google.com instead of  google.com. How do I correct that??

Replies are listed 'Best First'.
Re^3: Can't find Unicode property definition
by moritz (Cardinal) on Mar 23, 2010 at 09:24 UTC
    By removing the leading "ping " with substr, split or a regex/subsitution
    Perl 6 - links to (nearly) everything that is Perl 6.
Re^3: Can't find Unicode property definition
by pemungkah (Priest) on Mar 23, 2010 at 09:27 UTC
    s/^ping\s+//; is one way. Changes the string, but I think that's not a problem as you have things.