Help for this page

Select Code to Download


  1. or download this
    my @names;
    while( $string=~s/\?<([a-z]+)>// ){push(@names,$1);}
    
    print "Names: ",join(',',@names),"\n";