Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. cfmartin

    Perl RegEx Query

    OMG: chomp should not have a $ infront of it. Must be Friday afternoon!
  2. cfmartin

    Perl RegEx Query

    open (INF, ARGV[0]) or die $!; my @data = (); while(<INF>){ $chomp($_); #your $_ =~s/this/that/g statements push (@data, $_); } close INF; my $output = "\t'" . (join("'/\n\t'", @data)) . "'\n";
  3. cfmartin

    Bad &lt;Select&gt; tag...

    I am using WWW::Mechanize to test a web site. The tests are going fine but I am getting the following messages when I run the test script: Bad <select> tag 'input' at ../lib/WWW/Mechanize.pm line 1691 Bad <select> tag '/form' at ../lib/WWW/Mechanize.pm line 1691 What is this? Any ideas. Thanks.
  4. cfmartin

    Trim whitespaces &gt; beginning and end

    O'Reilly's Mastering Regular Expressions recommends the two regex solution because, as pointed out, its faster.

Part and Inventory Search

Back
Top