in reply to Re: Re: Passing Indirect as Reference
in thread Passing Indirect as Reference

thanks to both of you. FYI, looking at jeroenes' last example I tried
my $parse_it = HTML::TokeParser->new( \ $self->{HTML} );
which worked just fine without the double quotes around the construct.

(I use the quoted hash keys by habit and early example, I suppose I can drop that habit soon. It doesn't affect hash keys with spaces in them?)

Replies are listed 'Best First'.
Re: Re: Re: Re: Passing Indirect as Reference
by jeroenes (Priest) on Jan 10, 2001 at 18:29 UTC
    I tried it, but perl appears to interpret the words as a method/package pair. So, you'll have to quote if you use spaces in keys.

    Jeroen
    I was dreaming of guitarnotes that would irritate an executive kind of guy (FZ)

      I knew there was a reason I was keeping this habit around. I had read somewhere that such a thing would happen, but when I tried to verify this morning via the Camel3 and perldoc I could not. Thanks.