http://www.perlmonks.org?node_id=1055878


in reply to Re: HTML::TableExtract - Easy Way To Tell If It Found A Table?
in thread HTML::TableExtract - Easy Way To Tell If It Found A Table?

So basically, I could just do an if statement like:

if ($te->tables) { print "I found a table!"; }

And something as simple as that would tell me if it found a table (as long as I called the parse function first)?

I love it when a program comes together - jdhannibal

Replies are listed 'Best First'.
Re^3: HTML::TableExtract - Easy Way To Tell If It Found A Table?
by kcott (Archbishop) on Sep 26, 2013 at 21:27 UTC
    "So basically, I could just do ..."

    Yes. Instead of typing the code into a forum, you could type it into your program.

    You could then run the program and find out what happens all by yourself.

    -- Ken