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.

さらに探す

次に試したいツール

同じカテゴリのツールと Gogotem で人気のツールを続けて探せます。

すべてのツール arrow_forward