Try running this script, I hope it is self-explanatory, if not, please ask!

#!/usr/bin/env perl use warnings; use strict; use Test::More; # I need to print a blank in a file if the price field is # less than 55. is output(54,'title'), "\n"; is output(54,'electric'), "\n"; # I also need the output to be blank if the price field is # greater than 55 but the title field contains the word "electric." is output(56,'the electric title'), "\n"; # If the item is greater than 55 without the word electric # in the title, I need the phrase "free_batteries" to be output. is output(56,'title'), "free_batteries\n"; # what about these two? is output(55,'title'), "free_batteries\n"; is output(55,'electric'), "\n"; sub output { my $price = shift; my $title = shift; if ( $price < 55 || $title =~ /electric/ ) { return "\n" } else { return "free_batteries\n"; } } done_testing;

In reply to Re: If statement issue from a Noob by haukex
in thread If statement issue from a Noob by tomdee27

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.