Error: Too many requests. Please try again. x

Regex Parser および Debugger ツール

指定された Regex に対して与えられた入力文字列を検証し、定義された正規表現に従って出力を照合する無料ツール。

このツールは、a)グローバル検索、b)大文字と小文字を区別しない検索、c)複数行の検索、をサポートします


Site24x7 APMインサイト を使用することで、コードレベルの可視性を実現し、アプリケーションのパフォーマンスを向上させることができます。

Check uptime from 120+ global locations

Mail Delivery Monitoring.

Monitor your SMTP server.

POP/IMAP Server Monitoring.

AI-powered alerts

Microsoft Exchange server monitoring.

Troubleshoot problems relating to mail servers.

Understand external dependencies

Monitor custom components and metrics

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