Escaping backslashes with REGEX Module

Hello,

Context: I have an automation that is triggered by incoming email notifications when a customer fills out a form on our store.

The automation relies heavily on REGEX patterns, as I extract each field from the HTML version of the email and send it to a database.

Recently, the template of the notification changed, so I needed to update the REGEX patterns.

The Issue: I tested my new REGEX patterns on regex101.com, and the pattern works exactly as I need it to:
“”"
href=[^“]“(https?[^”][^”])\"
“”"

However, when I use this pattern in Make for the exact same text (HTML content from the email template), it returns empty.

I am quite sure this is due to differences in how Make and regex101 handle patterns. This module, with all its settings, worked perfectly for my previous REGEX pattern.

I suspect the issue may be related to the escaping backslashes at the end of the pattern, but I’m not sure how to modify it for the Make engine. I basically need to get the exact same match that regex101 screenshot gives me.