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

REGEX 테스터 및 디버거

지정된 정규식 대비 입력 문자열의 유효성을 검사하여 정의된 기준과 일치하는 지를 손쉽게 확인하는 무료 regex 테스터입니다!

이 도구는 Javascript, Python 및 PHP에서 구문 분석과 디버깅을 지원합니다.


Site24x7 APM Insight를 사용하여 코드 수준의 가시성을 확보하고 앱의 성능을 향상시키세요.

130여 글로벌 위치에서 가동 시간 검사

메일 전달 모니터링.

SMTP 서버 모니터링 하기.

POP/IMAP 서버 모니터링.

AI 기반 경고

Microsoft Exchange 서버 모니터링.

메일 서버와 관련된 문제 해결

외부 종속성 파악

사용자 정의 구성요소 및 메트릭스 모니터링

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