How to eliminate New line and Carriage Return in oracle

The Column B in the table A has data like the following. ‘”0.00000 “‘   This is eliminated when the run the below query. UPDATE A SET UT_CUMWD = TRIM( REPLACE( TRIM( TRANSLATE( TRANSLATE( TRANSLATE(B, CHR(10), ‘ ‘) , CHR(13), ‘ ‘) , CHR(09), ‘ ‘) ), ‘”‘,”) ) ; Commit;