Error: Too many requests. Please try again later. x

Công Cụ Kiểm Tra & Xử Lý Lỗi Biểu Thức Chính Quy

Công cụ kiểm tra biểu thức chính quy miễn phí giúp xác thực chuỗi đầu vào của bạn theo một biểu thức chính quy đã cho biết, đảm bảo nó khớp với các tiêu chí đã cho biết một cách dễ dàng!

Công cụ hỗ trợ phân tách và xử lý lỗi bằng các ngôn ngữ Javascript, Python và PHP


Nắm thông tin ở cấp mã và cải thiện hiệu năng ứng dụng của bạn dùng Site24x7 APM Insight.

Kiểm tra thời gian hoạt động từ 130 địa điểm trên toàn cầu

Theo Dõi Gửi Mail.

Theo dõi máy chủ SMTP của bạn.

Theo Dõi Máy Chủ POP/IMAP.

Cảnh báo dựa trên AI

Theo dõi máy chủ Microsoft Exchange.

Xử lý sự cố liên quan đến máy chủ mail.

Hiểu những sự phụ thuộc bên ngoài

Theo dõi các thành phần và số liệu tùy chỉnh

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