Hi All,
Is there any function to replace other than alphabets(english letters).
In java there is a function like : String s="L AMÃâ°RIQUE C EST Ãâ¡A";
s=s.replaceAll("[^a-zA-Z0-9 ]", "");
This function removes all other than (a-zA-Z0-9 ) this characters.
Result: L AMRIQUE C EST A
Please let me know is there any function available in oracle.
Regards,
Rajasekhar