in reply to Re: Creating hash with my imput
in thread Creating hash with my imput

How would I, if I wanted to, use an if(statement) $in="exit"; then the program will exit??? By the way perlmonks you guys are genious

Replies are listed 'Best First'.
Re^3: Creating hash with my imput
by kejohm (Hermit) on Aug 19, 2011 at 02:29 UTC

    If by exit you mean exit the loop and continue the script after the loop, you can use the last function to drop out of a loop, something like:

    ... while($in){ if($in =~ /exit/i){ last; } } # Code will continue here ...

    Here we are using a case-insensitive regular expression match to test for the user entering 'exit'. This means that the user can enter 'Exit', 'EXIT', eXiT', etc. and the loop will still terminate.

    This may not be necessay, since in my original example, if the user presses the ENTER key without typing anything, the input will be an empty string after chomp() has removed the newline, which, in Perl, evaluates to false, and the loop terminates.

    If, on the other hand, you mean exit from the script without, for instance, printing anything like in my original example, just replace last with exit in the example above.

      What I meant was exit the loop and print, sorry about the confussion. Although the extra code that you gave me just exits the loop and does not print the hash, how do I do this, byt the way thank you again

        last should cause the script to drop out of the loop and continue. Maybe post the code that you have so we can see what the problem might be.