Help for this page

Select Code to Download


  1. or download this
    my $str = "user:group:root:testing";
    @user = split(/:/, $string);
    
  2. or download this
    my $yourstr = "user:pass";
    my ($User,$Pass) = split (/:/,$yourstr);
    print "User:$User\n";
    print "Pass:$Pass\n";