Tagged Questions
The bareword tag has no wiki summary.
3
votes
5answers
257 views
Why does defined sdf return true in this Perl example?
I tried this example in Perl. Can someone explain why is it true?
if (defined sdf) { print "true"; }
It prints true.
sdf could be any name.
In addition, if there is sdf function defined and ...
3
votes
3answers
269 views
Why does Perl complain about barewords in my Win32::OLE script?
#___ FIND LAST ROW/COLUMN WITH DATA
my $row = $Sheet1 -> UsedRange -> Find(
{ What => "*",
SearchDirection => xlPrevious,
SearchOrder => xlByRows
...
2
votes
2answers
90 views
perl s/this/that/r ==> “Bareword found where operator expected”
http://perldoc.perl.org/perlop.html
Recommends this:
$foo = $bar =~ s/this/that/r;
However, I get this error:
Bareword found where operator expected near
"s/this/that/r" (#1)
This is ...
2
votes
1answer
61 views
Problems with eval and use
I wrote this code and it works when POE module is installed in the system.
#!/usr/bin/perl
use strict;
use warnings;
use POE;
...
But I want to determine if this module exist:
#!/usr/bin/perl
...
1
vote
2answers
183 views
Getting a Bareword error on Perl Tutorial
I'm making progress but I've run into a new problem.
This is the new code:
#!/usr/bin/perl -w
use strict;
use LWP::Simple;
use HTML::TreeBuilder;
my $url = 'http://oreilly.com/store/complete.html';
...