Skip to content
Snippets Groups Projects
Select Git revision
  • benchmark-tools
  • postgres-lambda
  • master default
  • REL9_4_25
  • REL9_5_20
  • REL9_6_16
  • REL_10_11
  • REL_11_6
  • REL_12_1
  • REL_12_0
  • REL_12_RC1
  • REL_12_BETA4
  • REL9_4_24
  • REL9_5_19
  • REL9_6_15
  • REL_10_10
  • REL_11_5
  • REL_12_BETA3
  • REL9_4_23
  • REL9_5_18
  • REL9_6_14
  • REL_10_9
  • REL_11_4
23 results

regex

  • Clone with SSH
  • Clone with HTTPS
  • user avatar
    Bruce Momjian authored
    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
    75a64eeb
    History