Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        my ($id) = split( /=/, $_)[1];
        print "Id: $id\n";
    }
    
  2. or download this
    $xyz = "http://mysite/bbsui.jsp?id=dxpwd";
    $id = $1 if ($xyz =~ m/\?id=(.+?)$/i);