User Profile
Collapse
-
How to open a command prompt from a specific folder using perl
How to open a command prompt from a specific folder using perl. And also how to execute command on command prompt using perl... -
TRY THIS....
$digits = "123456789" ;
(@nonlap) = $digits =~ /(\d\d\d)/g;
(@yeslap) = $digits =~ /(?=\d\d\d)/g;
print "non-overlapping: @nonlap\n";
print "overlappin g: @yeslap\n";
No activity results to display
Show More
Leave a comment: