EasyRegex Logo
EasyRegex
Nouveau

Find Whole Words in PHP

PHP

Expression Régulière

/	+/
Copier
Avez-vous des Retours ?

Explication

This regex pattern uses the \b metacharacter to match the boundary between a word character and a non-word character. By using \b at the beginning and end of the pattern, it ensures that the match is a whole word.

PHP

Exemple d'Utilisation

preg_match_all('/\b\w+\b/', $text, $matches);
Copier

Expressions Régulières Similaires