PostgreSQL: String Functions and Operators
I kind of skipped over the functions/operators section of the PostgreSQL documentation when reading it. I want to review the sections that I think would be useful to me.
References
Notes
This section describes functions and operators for examining and manipulating string values. Strings in this context include values of the types char
, varchar
, and text
. Most of the functions below work on all of these types.
Function | Return Type | Description |
---|---|---|
|
| String concatenation |
|
| String concatenation with one non-string input |
|
| Number of characters in string |
|
| Convert string to lower case |
|
| Replace substring |
|
| Location of specified substring |
|
| Extract substring |
|
| Extract substring from POSIX regular expression |
|
| Convert string to upper case |
|
| Remove the longest string containing only the |
|
| Convert the first letter of each word to upper case and the rest to lower case. Words are sequences of alphanumeric characters separated by non-alphanumeric characters |
|
| Return all captured substrings resulting from matching a POSIX regular expression against the |
|
| Replace substring(s) matching a POSIX regular expression |
|
| Split |
|
| Split |
|
| Replace all occurrences in |
Comments
You can read more about how comments are sorted in this blog post.
User Comments
There are currently no comments for this article.