examples of non-printable characters.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vani747
    New Member
    • Aug 2012
    • 1

    examples of non-printable characters.

    i am using this following function in my code.
    select regexp_replace( col name,'[[:cntrl:]]','u')
    In this above function [[:cntrl:]] means non printable charcters..how can i give value to this function..pleas e help me.
  • rski
    Recognized Expert Contributor
    • Dec 2006
    • 700

    #2
    Code:
    select regexp_replace(column_name,'[[:cntrl:]]','u')
    from table_name;

    Comment

    Working...