Trim Whitespaces (New Line and Tab space) in a String in Oracle

前端 未结 14 897
挽巷
挽巷 2021-01-30 10:29

I need to trim New Line (Chr(13) and Chr(10) and Tab space from the beginning and end of a String) in an Oracle query. I learnt that there is no easy way to trim multiple charac

14条回答
  •  盖世英雄少女心
    2021-01-30 11:16

    Below code can be used to Remove New Line and Table Space in text column

    Select replace(replace(TEXT,char(10),''),char(13),'')
    

提交回复
热议问题