如何在oracle中拆分单词

how to split words in oracle

问题:显示的文本没有换行符或字符 (10);

假设测试

column_name(文字)

       hello world hello world hello world hello world.
       hello world.

sql 我试过了

select REPLACE(REPLACE( text, CHR(10) ), CHR(13) )  
from dual

但它仍然以单行输出。

hello world hello world hello world hello world.hello world.

欢迎任何解决方案。

有效的解决方案

select REPLACE(REPLACE(textn,chr(10) , '<br>'),chr(13),'') 
  INTO v_text 
from dual;

这样试试

select REPLACE(text, string_to_be_replaced, chr(10)||chr(13)) from dual;

SQL 开发者的结果:

有效的解决方案

Sql

 select REPLACE(REPLACE(textn,chr(10) , '<br>'),chr(13),'') 
     INTO v_text 
  from dual;