Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
5bdef38b
Commit
5bdef38b
authored
Jan 31, 2014
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs: mention 'g' is not in the regex embedded options table
Mentioned in substring() and regexp_replace() sections.
parent
5168c769
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
doc/src/sgml/func.sgml
doc/src/sgml/func.sgml
+5
-3
No files found.
doc/src/sgml/func.sgml
View file @
5bdef38b
...
@@ -3984,7 +3984,8 @@ substring('foobar' from 'o(.)b') <lineannotation>o</lineannotation>
...
@@ -3984,7 +3984,8 @@ substring('foobar' from 'o(.)b') <lineannotation>o</lineannotation>
string containing zero or more single-letter flags that change the
string containing zero or more single-letter flags that change the
function's behavior. Flag
<literal>
i
</>
specifies case-insensitive
function's behavior. Flag
<literal>
i
</>
specifies case-insensitive
matching, while flag
<literal>
g
</>
specifies replacement of each matching
matching, while flag
<literal>
g
</>
specifies replacement of each matching
substring rather than only the first one. Other supported flags are
substring rather than only the first one. Supported flags (though
not
<literal>
g
</>
) are
described in
<xref
linkend=
"posix-embedded-options-table"
>
.
described in
<xref
linkend=
"posix-embedded-options-table"
>
.
</para>
</para>
...
@@ -4021,8 +4022,9 @@ regexp_replace('foobarbaz', 'b(..)', E'X\\1Y', 'g')
...
@@ -4021,8 +4022,9 @@ regexp_replace('foobarbaz', 'b(..)', E'X\\1Y', 'g')
string containing zero or more single-letter flags that change the
string containing zero or more single-letter flags that change the
function's behavior. Flag
<literal>
g
</>
causes the function to find
function's behavior. Flag
<literal>
g
</>
causes the function to find
each match in the string, not only the first one, and return a row for
each match in the string, not only the first one, and return a row for
each such match. Other supported
each such match. Supported flags (though
flags are described in
<xref
linkend=
"posix-embedded-options-table"
>
.
not
<literal>
g
</>
)
are described in
<xref
linkend=
"posix-embedded-options-table"
>
.
</para>
</para>
<para>
<para>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment