Error: Too many requests. Please try again. x

Outil de test et de débogage Regex

Outil gratuit qui valide la chaîne d’entrée donnée contre l’expression régulière donnée et fait correspondre le résultat en fonction de la Regex définie.

L’outil prend en charge l’analyse et le débogage des langages JavaScript, Python et PHP


Obtenez une visibilité au niveau du code et améliorez les performances de votre application en utilisant APM Insight de Site24x7.

Vérifiez le temps de fonctionnement à partir de plus de 110 sites dans le monde

Surveillance de la remise du courrier.

Surveillez votre serveur SMTP.

Surveillance des serveurs POP/IMAP.

Alertes alimentées par l’IA

Surveillance des serveurs Microsoft Exchange.

Dépanner les problèmes liés aux serveurs de messagerie.

Comprenez les dépendances externes

Surveillez les composants et les indicateurs personnalisés

Regex Parser Flags

Following are the explanations for the flags used.

Regex Parser Flags Description
g (Global) Don't return after the first match
s (Dot All) Dot also matches newline
i (Case Insensitive) Case insensitive match, ignores case of alphabets
m (Multiline) Causes ^ and $ to match the begin/end of each line
D (Dollar) Makes the dollar sign '$', to always match the end of the string, instead of end of the line
x (Extended) Spaces in the pattern are ignored
U (Ungreedy) The match becomes lazy by default

Regex Parser Examples

Following are few example input regex and results for the sample input string

InputRegex Description Input string Result
[A-Z] Character class: Literally matches all characters given inside '[' ']' Once upon A time There was a King with Seven sons
[A-Za-z]+ Checks for one or more matches Once upon A time
([A-Z]) Capturing group: Captures the matches of pattern within '(' and ')' in separate groups Once upon A time
\w Matches any word character (similar to [a-zA-Z0-9_]) Site
([A-Z])\w+ Capture all groups starting with uppercase alphabet and match all words starting with upper case alphabet followed by word character Once