Help for this page

Select Code to Download


  1. or download this
    use constant MAX_CHARS => 1100;
    if ( length($str) > MAX_CHARS ) {
        $str = substr( $str, 0, MAX_CHARS );
    }
    
  2. or download this
    # Limit the string's length
    $str = substr( $str, 0, MAX_CHARS );