XML parsing in oracle pl/sql

前端 未结 2 1877
自闭症患者
自闭症患者 2021-01-28 14:06

I am trying to parse this XML in PL/SQL


 


        
2条回答
  •  既然无缘
    2021-01-28 14:40

    You can use regular expression to replace xmlns to empty string... then you can read the xml column

    xml:= regexp_replace(xml,'(xmlns:[a-z]|xmlns).*?(\"|\'').*?(\"|\'')',' ');

提交回复
热议问题