Hi guys,
I was reading that ACC understands REGEX using LIKE operator. So I used
@email LIKE '^[A-Za-z]+[A-Za-z0-9\._-]+@[A-Za-z0-9\.-]+\.[A-Za-z]{2,5}[\.]*$'
to filter all emails that matches the REGEX expression, however it its returning 0 results.
Is this the correct way to use it or am I missing something?
Thank you!
- Raúl
Solved! Go to Solution.
Hi,
Like is wildcard match in SQL, generally used with '%':
All supported RDBMS' in ACC ship with regex engines. E.g. for Postgres:
The desired functions can be used in ACC by adding to its function list or by turning off its whitelist via setting xtk:option XtkPassUnknownSQLFunctionsToRDBMS to 1.
Thanks,
-Jon
Hi,
check if you can find a solution in the extensively discussed question. I think this should answer your question.
Views
Replies
Total Likes
Hi,
Like is wildcard match in SQL, generally used with '%':
All supported RDBMS' in ACC ship with regex engines. E.g. for Postgres:
The desired functions can be used in ACC by adding to its function list or by turning off its whitelist via setting xtk:option XtkPassUnknownSQLFunctionsToRDBMS to 1.
Thanks,
-Jon
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies