CHARACTER string = " hello world " trimmed_length = LEN( TRIM( string ) ) ! trimmed_length is set to 12
full_length = LEN(string) ! full_lenght is set to 18
trimmed_length = LEN_TRIM( string ) ! set again to 12