using informix isql, in a select statement, i want to REPLACE a pipe with a slash and a linefeed with a space. REPLACE(col,'|','/')etc work fine, but how do i address the LF as REPLACE(col, CHAR(10), ' ')etc grumbles about the clause CHAR

The oracle syntax is: translate(a_char_column, '|'||chr(10), '/ ') from a_table;