Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Replacing | with line feed||carriage return in APEX interactive report

elmo j hMay 25 2021 — edited May 25 2021

We have a database varchar2 field that can contain multiple strings delimited by the pipe character (e.g. 'abc|efg|hij'). I would like to display this field in an APEX interactive report with each string on a separate line:
abc
efg
hij
I can accomplish this in SQL with translate (e.g. translate(field), '|', chr(10)||chr(13) ). This does not work in the APEX interactive report-- even if I add "<span style="line-height:200%">#SUCCESS_BEFORE#</span>" to the Column Formatting HTML Express property.
Is there a way to accomplish this?
Thank you.

Comments
Post Details
Added on May 25 2021
1 comment
320 views