ibec_Length

Returns the number of characters in a string.

Syntax

  function ibec_Length(S : string): string;

Description

No additional description...

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

See also:
ibec_Copy
ibec_Pos

back to top of page
<< ibec_Decode | IBEBlock | ibec_Pos >>