Help for this page

Select Code to Download


  1. or download this
    print map { /(.+)\./ && "$1\n" } sort RetrieveIllustrationList( $cl_us
    +erinput );
    
  2. or download this
    print map { /(.+)\./, "\n" } sort RetrieveIllustrationList( $cl_userin
    +put );
    
  3. or download this
    print join "\n", map( /(.+)\./, sort RetrieveIllustrationList( $cl_use
    +rinput ) ), '';
    
  4. or download this
    local $, = "\n";
    print map( /(.+)\./, sort RetrieveIllustrationList( $cl_userinput ) ),
    + '';
    
  5. or download this
    print map "$_\n", map /(.+)\./, sort RetrieveIllustrationList( $cl_use
    +rinput );
    
    print "$_\n" for map /(.+)\./, sort RetrieveIllustrationList( $cl_user
    +input );