Is there any function to replace words in ASE?

Thanks SP

link|improve this question

40% accept rate
Got the ans..str_replace is working – SSE Jul 1 '11 at 11:35
feedback

2 Answers

REPLACE ( original-string, search-string, replace-string )

SELECT REPLACE( 'abc,def,ghi,jkl', 'abc', 'xx' ) FROM products
link|improve this answer
This is not working as expected – SSE Jul 5 '11 at 6:08
What is the output you are getting and how do you want to replace the words, from which field in the table etc. please detail – sudheshna Jul 5 '11 at 6:14
feedback

Try this:

SELECT str_replace( 'impossible', 'im',':)' )  
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.