meta data for this page
  •  

F_STROFCHAR

compatibility to GrUDF

Entrypoint strofchar not compatible with UTF-8 - use F_STRREPEAT


Inputs/Outputs

   Input       CSTRING(1)          String to repeat
               INTEGER             Number of repetitions
   Output      CSTRING(32760)	     Returns a string with the indicated number of repeated indications

Syntax

   TestSQL
   SELECT F_STRINGLENGTH(F_STROFCHAR('A', 10)) || ' mal A' AS ISCORRECT, F_STROFCHAR('A', 10) 
   FROM RDB$DATABASE;
   SELECT NULL AS ISCORRECT, F_STROFCHAR(NULL, NULL) FROM RDB$DATABASE;