EasyRegex Logo
EasyRegex
Nuevo

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

php

Expresión Regular

/^https?:\/\/w?w?w?\.google\.com\/maps\/embed/
Copiar
¿Tienes Comentarios?

Explicación

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

Ejemplo de Uso

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

Expresiones Regulares Similares