I come seeking the wisdom of the all knowledgeable monks.

I'm working on a script that passes user input into a subroutine and compares the value to a regex for compliance. Below is a couple snippets of code to show what I'm doing. The variable names in the hash have been changed and do not reflect what I am using in my actual script.

use strict; use warnings; use diagnostics; my ($input, $value) my %vlan = ( "vlan1" => "", "vlan2" => "", "vlan3" => "", "vlan4" => "", ); sub verification { print "Entering the subroutine\n"; #added for debugging purposes print "$value"; #added for debugging purposes if ($value =~ m{(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\. (25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\. (25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\. (25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\/ (2[0-4]?$)}x) { %vlan{$value}=$input; } else { print "\t\tInvlaid response. Please try again.\n"; #enter return } print "Exiting the subroutine.\n"; #added for debugging purposes } ---lines omitted--- print "Enter IP address in x.x.x.x/x format\n"; foreach $_(keys %vlan) { print "\t$_: "; chomp ($input = <STDIN>); $input = $value; #call subroutine to check user input verification($value) }

I'm having a problem with passing $value into the subroutine. When I test my script, I get the  Entering the subroutine message followed by an error stating that I am using an undefined value, and the the closing  Exiting the subroutine message.

Can someone please point me in the direction how I can pass this value to my subroutine for verification?

Thanks for all of your help.


In reply to Passing a scalar to a subroutine by rspishock

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.