What do you know about subroutines? Because it looks like you're asking how to pass any argument to a subroutine, in which case, you may want to read perlsub. Anyway, you declare your subroutine like this:

sub myRepeatedCode { my ($day, $argument2, $argument3) = @_; # Do something with $day }
and you just call like: myRepeatedCode($day, "argument2", 3);

But actually in your case, instead of "if today do something, if tomorrow same thing, if some other day still the same" you could actually write something like "if today, tomorrow or some other day, do something", which avoids the code repetition in the first place. To check that one of several conditions is met, you can put an OR operator between them. Or is often written || in most languages, but in perl in can also be written or.

if ($va eq 'today' || $va eq 'tomorrow' || $va eq 'friday') { DoSomething(); }

The difference between || and or is their precedence, see perlop on that point.


In reply to Re: Working with child nodes in subroutine (XML::LibXML) by Eily
in thread Working with child nodes in subroutine (XML::LibXML) by Ockie

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.