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
back to top of page
<< ibec_Decode | IBEBlock | ibec_Pos >>







