translate expand_more
arrow_back 메인으로 돌아가기

Regex 테스터

브라우저를 벗어나지 않고 정규식을 테스트하고, 일치 결과와 플래그 동작을 바로 확인할 수 있습니다.

code_blocks 코딩hourglass_top 결과 확인 중

일치 개수

2

/\b[\w.%+-]+@[\w.-]+\.[A-Za-z]{2,}\b/gu

위치 9

hello@gogotem.com

위치 34

team@example.org

테스트 방식

The tester builds a JavaScript regular expression from your pattern and selected flags, then scans the text and lists every match with its position.

사용 팁

  • Turn on the global flag to capture every match instead of just the first one.
  • Case-insensitive matching is useful for email, tags, and user-entered text.
  • Invalid syntax is reported immediately so you can fix the pattern quickly.

자주 묻는 질문

Does this use JavaScript regex syntax?expand_more

Yes. The tester follows the browser RegExp engine, including common flags such as global, ignore-case, multiline, dotAll, and unicode.

Can I use this for quick validation patterns?expand_more

Yes. It is useful for checking email patterns, URL fragments, form rules, and text extraction logic before using them in code.

계속 둘러보기

다음에 살펴보기 좋은 도구

같은 카테고리의 도구와 인기 도구를 한 곳에서 바로 탐색해보세요.

전체 도구 보기 arrow_forward