Re: Regular Expressions

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Mark Williams" <markwillimas(at)gmail(dot)com>
Cc: "'A(dot) Sasaki'" <asasaki(at)gmail(dot)com>, pgsql-sql(at)lists(dot)postgresql(dot)org
Subject: Re: Regular Expressions
Date: 2018-11-04 19:55:07
Message-ID: 3966.1541361307@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

"Mark Williams" <markwillimas(at)gmail(dot)com> writes:
> Also, what would be the regular expression if you want to check whether all the words were in the field where you had say 10 words/phrases you wanted to check for?

As David said, regular expressions aren't really designed to do that.
Personally I'd do the AND at the SQL level, ie

myfield ~* '\mtext1\M' AND myfield ~* '\mtext2\M' AND ...

You might also take a look at the full text search machinery, which
is probably better suited to this task.

regards, tom lane

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Mark Williams 2018-11-04 20:02:44 RE: Regular Expressions
Previous Message David G. Johnston 2018-11-04 19:51:48 Re: Regular Expressions