Hi,
I am trying to write a routine that would print out the value(s) of
the entire variable either it be scalar, hash or array:
sub ShowValue {
my $i = shift;
my $v = shift;
my $r = shift;
if (ref($r
Michael 'topdog' Thompson wrote:
- hi,
i'm trying to install the HTTP::Proxy module. when i run the 'nmake
test' command it does a halt at 't\20dummy...'. below is my
install sequence. what step did i not do?
You've done all the steps. I don't understand why you're issuing the
'pause
> I want to try modifying the logic to process a file that has been
> slurped into a string variable, like so:
>
> while($wholefile)
> {
> if(/ .. /<\/TEXT>/)
> {
> # process line
> }
> }
Smells like XML. If that's the case, you'd be much better off with an XML
pa
I have this logic to follow:
while()
{
if(/START/ .. /END/)
{
# process line
}
}
I found this logic in an article
(http://www.perl.com/pub/a/2004/06/18/variables.html) on Perl's Special
Variables at Perl.com.
I want to try modifying the logic to process a