Help for this page

Select Code to Download


  1. or download this
    /^(.{1, 20}).*/;
    $shortened_string = $1;
    
  2. or download this
    $shortened_string = /^(.{1,20})/ && $1;
  3. or download this
    ($shortened_string) = /^(.{1,20})/;