Donk Tools
EN
中文
日本語
한국어
ES
FR
DE
Donk Tools
コード
正規表現テスター
正規表現テスター
パターン
g
i
m
s
u
クイックパターン...
\d+ — One or more digits
\w+ — One or more word chars
.+ — One or more of anything
[a-zA-Z]+ — Only letters
^\s+|\s+$ — Leading/trailing whitespace
\b\w{3,}\b — Words 3+ chars
[A-Z][a-z]+ — Capitalized words
https?://[^\s]+ — URLs
[\w.-]+@[\w.-]+\.\w+ — Email addresses
\d{3}[-.]?\d{3}[-.]?\d{4} — Phone numbers
テストテキスト
hello world, welcome to regex testing!
一致
0
一致
he
llo
wor
ld
, we
lcome
to regex testing!
チートシート