Aug 10, 2006 #1 dman4x4 Technical User Joined Aug 10, 2006 Messages 2 Location US Hi, I'm looking at this perl script and found one line that looks like a regex. Any idea what it does? $var="/..%01" x 40; Thanks dman
Hi, I'm looking at this perl script and found one line that looks like a regex. Any idea what it does? $var="/..%01" x 40; Thanks dman
Aug 10, 2006 1 #2 PaulTEG Technical User Joined Sep 26, 2002 Messages 4,469 Location IE not a regex, creates a string of 40 times '/..%01'; print $var."\n"; HTH Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-) Upvote 0 Downvote
not a regex, creates a string of 40 times '/..%01'; print $var."\n"; HTH Paul ------------------------------------ Spend an hour a week on CPAN, helps cure all known programming ailments ;-)
Aug 10, 2006 Thread starter #3 dman4x4 Technical User Joined Aug 10, 2006 Messages 2 Location US Thanks a lot Upvote 0 Downvote