regex | 測試 | 匹配

> 測試 | 匹配 | 除錯 <

// 使用即時匹配測試和除錯正則表達式

/ / g
0 個匹配
[即時]

即時匹配

輸入regex模式或測試字串時匹配結果即時更新。

[視覺化]

視覺化結果

匹配的文字在測試字串中直接用彩色背景高亮顯示。

[免費]

模式庫

快速插入郵箱、URL、電話號碼、IP位址、日期的常用regex模式。

// REGEX

JavaScript RegExp:

Regular expressions (regex) are patterns used to match character combinations in strings. JavaScript supports flags: g (global), i (case-insensitive), m (multiline), s (dotAll), and u (unicode).

Example:

/\\d+/g matches "abc123def456" → ["123", "456"]

Use Cases:

  • >Form validation: email, phone, URL
  • >Text search and replace
  • >Data extraction and web scraping
  • >Log file analysis
  • >Input sanitization

>> FAQ

Q: What is regex?

A: A regular expression is a sequence of characters that defines a search pattern for string matching, searching, and replacing.

Q: What do flags mean?

A: g (global) finds all matches. i ignores case. m (multiline) makes ^ and $ match line starts/ends. s (dotAll) makes . match newlines. u (unicode) enables full Unicode.

Q: What are capture groups?

A: Capture groups are created with parentheses () in a regex pattern to capture matched text for later reference.

Q: Greedy vs lazy matching?

A: Greedy quantifiers (*, +, {n,}) match as much text as possible. Lazy quantifiers (*?, +?, {n,}?) match as little as possible.

Q: Common regex patterns?

A: Email: [a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,} | URL: https?://[^\\s]+ | IP: \\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\b

// 其他語言