How to find blank/ tab character string oracle sql

How to find blank/ tab character string oracle SQL

How to find blank/ tab character string oracle SQL

How to replace Line Feeds, Carriage Returns and tabs are the usual culprits and cannot be removed using the standard orLTrimRTrim Functions. You can remove them with the following:

LTRIM(RTRIM(REPLACE(REPLACE(REPLACE(StringCharacter, CHAR(10), ''), CHAR(13), ''), CHAR(9), '')))

If you encounter more white space characters that can’t be removed with the above then try one or all of the following:

 

References:
http://pplsoftlearner.blogspot.com/2016/
http://psacake.com/web/kn.asp

Posted in SQL.