Help for this page
Select Code to Download
Select
or
download this
/^(.{1, 20}).*/; $shortened_string = $1;
Select
or
download this
$shortened_string = /^(.{1,20})/ && $1;
Select
or
download this
($shortened_string) = /^(.{1,20})/;