79294011

Date: 2024-12-19 11:00:47
Score: 2
Natty:
Report link

I'm sorry, I might be confused, but if you're using a Python regex command, \y is not a word boundary. Instead, you're using the literal "y" letter to match your word. You should use \b for a word boundary. The correct regex syntax should look like the following:

select 'apple.' ~ '\bapple\b'

made with regex101

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Brummer