Open banagale opened 2 years ago
https://www.postgresql.org/docs/9.3/functions-matching.html describes it as POSIX-like, with some pgsql specific things like choosing to use \y
instead of \b
, which may be due to the fact that \b
is interpreted as a backspace, and \B
as \
(backslash).
Feature
Request is for a regex "flavor" of postgres, which has syntax differences from say, Python.
A query using a postgres regex looks like:
Where
\y
approximates\b
in python.