PostgreSQL Regex Word Boundaries?

RegexPostgresqlWord Boundary

Regex Problem Overview


Does PostgreSQL support \b?

I'm trying \bAB\b but it doesn't match anything, whereas (\W|^)AB(\W|$) does. These 2 expressions are essentially the same, aren't they?

Regex Solutions


Solution 1 - Regex

PostgreSQL uses \m, \M, \y and \Y as word boundaries:

\m   matches only at the beginning of a word
\M   matches only at the end of a word
\y   matches only at the beginning or end of a word
\Y   matches only at a point that is not the beginning or end of a word 

See Regular Expression Constraint Escapes in the manual.

There is also [[:<:]] and [[:>:]], which match the beginning and end of a word. From the manual:

> There are two special cases of bracket expressions: the bracket expressions [[:<:]] and [[:>:]] are constraints, matching empty strings at the beginning and end of a word respectively. A word is defined as a sequence of word characters that is neither preceded nor followed by word characters. A word character is an alnum character (as defined by ctype) or an underscore. This is an extension, compatible with but not specified by POSIX 1003.2, and should be used with caution in software intended to be portable to other systems. The constraint escapes described below are usually preferable (they are no more standard, but are certainly easier to type).

Solution 2 - Regex

A simple example

select * from table_name where column ~* '\yAB\y';

This will match AB ab ab - text text ab text AB text-ab-text text AB text ...

But you have to use:

select * from sometable where name ~* '\\yAB\\y';

in case you have standard_conforming_strings flag set to OFF. Note the double slashes.
You can set it manually :

set standard_conforming_strings=on;

Then :select * from table_name where column ~* '\yAB\y'; should work.

Solution 3 - Regex

Exact word search in text:

I was facing following problem.

I wanted to search all contacts which has 'cto' as exact word in titles, but in results was getting results with title having 'director' in it, I was using following query

select * from contacts where title ilike '%cto%';

I also tried with whitspaces around wildcard as '% cto %', it was getting matched with text which contains ' cto ', got results like 'vp, cto and manger', but not results with exact title as 'cto'.

I wanted both 'vp, cto and manger' and 'cto' in results, but not 'director' in results

Following worked for me

select * from contacts where title ~* '\\ycto\\y';

~	Matches regular expression, case sensitive
~*	Matches regular expression, case insensitive	

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionmpenView Question on Stackoverflow
Solution 1 - RegexDaniel VandersluisView Answer on Stackoverflow
Solution 2 - RegexMD. Mohiuddin AhmedView Answer on Stackoverflow
Solution 3 - RegexPramod ShindeView Answer on Stackoverflow