postgresql/src/backend/regex
Bruce Momjian 75a64eeb4b I made the patch that implements regexp_replace again.
The specification of this function is as follows.

regexp_replace(source text, pattern text, replacement text, [flags
text])
returns text

Replace string that matches to regular expression in source text to
replacement text.

 - pattern is regular expression pattern.
 - replacement is replace string that can use '\1'-'\9', and '\&'.
    '\1'-'\9': back reference to the n'th subexpression.
    '\&'     : entire matched string.
 - flags can use the following values:
    g: global (replace all)
    i: ignore case
    When the flags is not specified, case sensitive, replace the first
    instance only.

Atsushi Ogawa
2005-07-10 04:54:33 +00:00
..
COPYRIGHT
Makefile $Header: -> $PostgreSQL Changes ... 2003-11-29 19:52:15 +00:00
re_syntax.n
regc_color.c
regc_cvec.c
regc_lex.c $Header: -> $PostgreSQL Changes ... 2003-11-29 19:52:15 +00:00
regc_locale.c Solve the 'Turkish problem' with undesirable locale behavior for case 2004-05-07 00:24:59 +00:00
regc_nfa.c
regcomp.c
rege_dfa.c
regerror.c
regexec.c I made the patch that implements regexp_replace again. 2005-07-10 04:54:33 +00:00
regfree.c