meta data for this page
  •  

ibec_Length

Returns the number of characters in a string.

Description

No additional description…

Syntax

function ibec_Length(S : string): string;

Example

execute IBEBlock
returns (sname varchar(100), iresult integer)
as
begin
  for select rdb$relation_name
      from rdb$relations
      into :sname
  do
  begin
    sname = ibec_Trim(sname);
    iresult = ibec_Length(sname);
    suspend;
  end
end