EasyRegex Logo
EasyRegex
Nouveau

Match URLs starting with 'https://www.google.com/maps/embed' in PHP

php

Expression Régulière

/^https?:\/\/w?w?w?\.google\.com\/maps\/embed/
Copier
Avez-vous des Retours ?

Explication

This regex pattern will match URLs that start with 'http://', 'https://', 'http://www.', 'https://www.', 'http://ww.', or 'https://ww.' followed by 'google.com/maps/embed'. The 'w?' allows for 'www' to be optional.

php

Exemple d'Utilisation

preg_match('/^https?:\/\/w?w?w?\.google\.com\/maps\/embed/', $url);
Copier

Expressions Régulières Similaires