F_CRLF

<< | IBExpert UDF Functions | F_LF >>

F_CRLF

 
  • Compatibility to FreeUDFLib, FreeUDFLibC, FreeUDFLib AvERP
  • Compatible with UTF-8
  • Input without
  • Output VARCHAR(3) Carriage Return and Linefeed - produce the indications CHR(13) + CHR(10)

Example

 SELECT ' ABC' || F_CRLF() || '123' FROM RDB$DATABASE;

Expected results:

 CONCATENATION
 =============
  ABC
 123

Example

 SELECT 'first row' || F_CRLF() || 'second row' FROM RDB$DATABASE;

Expected results:

 CONCATENATION
 ===================== 
 first row
 second row

back to top of page
<< | IBExpert UDF Functions | F_LF >>