Help for this page

Select Code to Download


  1. or download this
    if ( length( $descr ) <= 2000 ) {
       $descr =~ tr/",//d;  # remove double-quotes and commas
    ...
    else {
       print "Description is too long (over 2000 characters)\n";
    }
    
  2. or download this
    $descr = <>;
    while (<>) {
       chop $descr;
       print $descr;
    }