Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
how to exit the loop after complete 3 rounds...?? it means... if you enter 3 times wrong input it should exit from the program... here i am providing code please modify it
#!/user/bin/perl print"enter the rang of array:\n"; chomp($c=<STDIN>); while($i=1){ print"while loop round:$i\n"; if($i>3){ exit; } if($c =~ /^\[|[a-z,A-Z]+/){ print "it is invalid please enter digits\n"; #print"enter the rang of array:\n"; #chomp($c=<STDIN>); } elsif($c =~ /^[1-9]+/){ print "you are entered correct input\n"; last; } $i++; } @a=(); $b; $1; print"Enter the array:\n"; for($i=0;$i<$c;$i++){ chomp($b=<STDIN>); $a[$i]=$b; } #for($i=0;$i<@a;$i++){ #print"the array $a[$i]\n"; #} #print"the PSI ID's:"; foreach $val(@a){ #print"####$val###\n"; if($val=~ /^([a-z]+)\s?PSI\-ID\-?(\d+)/){ print"value=$2\n"; push(@b,$1); push(@c,$2); } } print"the pax id's with PSI:\n"; for($i=0;$i<=@b;$i++){ for($j=0;$j<=@c;$j++){ if($i==$j){ print"$b[$i] $c[$j]\n"; } } }

In reply to Re^2: Regex shows only last match multiple times? by Anonymous Monk
in thread Regex shows only last match multiple times? by GertMT

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-03-28 20:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found