vote up 3 vote down star

Is there an existing PL/SQL method which takes a string and returns the same string but with backslashes preceding any regexp chars?

flag

1 Answer

vote up 2 vote down check

Try this:

result := REGEXP_REPLACE(subject, '([$^[()+*?{\|])', '\\\1', 1, 0, 'c');
link|flag
Correct me if I'm wrong I think those REGEXP_ functions are 10g only? Amnyway for Ora9 I used: owa_pattern.change(strResult,'[+,.,(,)[,*,\,^,$,|,?,{,#]','\\' || '&','g'); – alansk Dec 18 '08 at 8:48
REGEXP functions are new in 10g. Since the question is about regular expressions, I assumed you were working with 10g. You didn't say. – Jan Goyvaerts Dec 18 '08 at 10:57
Never assume ;) Seriously tho, sorry about not mentioning the Oracle version. – alansk Dec 18 '08 at 12:58

Your Answer

Get an OpenID
or

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