惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
阮一峰的网络日志
阮一峰的网络日志
G
Google Developers Blog
J
Java Code Geeks
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
云风的 BLOG
云风的 BLOG
Vercel News
Vercel News
L
LangChain Blog
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Stack Overflow Blog
Stack Overflow Blog
P
Proofpoint News Feed
腾讯CDC
博客园_首页
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
M
MIT News - Artificial intelligence
WordPress大学
WordPress大学
D
DataBreaches.Net
Microsoft Security Blog
Microsoft Security Blog
有赞技术团队
有赞技术团队
博客园 - 叶小钗

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Stop Copy-Pasting Regex You Don't Understand: 5 Patterns ...
zhihu wu · 2026-06-21 · via DEV Community

zhihu wu

Stop Copy-Pasting Regex You Don't Understand: 5 Patterns Explained

Every developer has done it: you Google "regex for email," copy the first Stack Overflow answer, paste it into your code, and cross your fingers that it covers all edge cases. Then six months later, user+tag@domain.co.uk slips through and breaks something.

Let's fix that. Here are five regex patterns you probably copy-paste, explained so you actually understand them — and can adapt them yourself.

1. Email Validation: The Pattern Everyone Gets Wrong

[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}

Broken down:

  • [a-zA-Z0-9._%+-]+ — username part: letters, digits, dots, underscores, percent, plus, hyphens. The + means "one or more."
  • @ — literal at sign.
  • [a-zA-Z0-9.-]+ — domain name: letters, digits, dots, hyphens.
  • \. — literal dot (escaped because . normally means "any character").
  • [a-zA-Z]{2,} — TLD: at least 2 letters.

When it fails: Unicode characters in the local part (café@example.com), quoted strings, IP-address domains. For production email validation, send a confirmation link — regex alone can't guarantee deliverability.

2. URL Extraction: Greedy vs. Lazy Trap

https?:\/\/[^\s/$.?#].[^\s]*

  • https? — "http" optionally followed by "s." The ? makes the preceding character optional.
  • :\/\/ — literal :// (forward slashes must be escaped outside character classes).
  • [^\s/$.?#] — match one character that is NOT whitespace, /, $, ., ?, or #. This prevents matching bare punctuation.
  • [^\s]* — then match everything until whitespace (\s). Note the * (zero or more) — if the URL is followed by a space, it stops there.

Pitfall: The * after [^\s] is greedy — always use it with a character class ([^\s]) rather than . to avoid gobbling up surrounding text. Test this in the regex tester with URLs embedded in paragraphs to see the difference.

3. IP Address Extraction: Backreference Magic

\b(?:\d{1,3}\.){3}\d{1,3}\b

  • \b — word boundary: ensures we don't match "192.168.1.1" inside "192.168.1.100".
  • (?:\d{1,3}\.) — a non-capturing group (?:): one to three digits followed by a dot. Non-capturing groups group without saving the match.
  • {3} — repeat the group exactly 3 times. So we get 123.45.67.
  • \d{1,3} — final octet, no trailing dot.
  • \b — word boundary again.

This pattern doesn't validate IPs — it matches 999.999.999.999. For validation, you'd need a much more complex pattern checking each octet's range (0-255). This pattern's job is extraction, not validation — it finds anything that looks like an IP in a log file.

4. Date Extraction (ISO 8601): Character Classes Done Right

\d{4}-(0[1-9]|1[0-2])-(0[1-9]|[12]\d|3[01])

  • \d{4} — exactly 4 digits (the year).
  • - — literal hyphen.
  • (0[1-9]|1[0-2]) — month: either 0 followed by 1-9 (Jan-Sep) OR 1 followed by 0-2 (Oct-Dec). The | means "OR."
  • - — literal hyphen.
  • (0[1-9]|[12]\d|3[01]) — day: 0[1-9] (1st-9th) OR [12]\d (10-29) OR 3[01] (30-31).

Known limitation: This accepts invalid dates like 2025-02-30. For bulletproof date validation, parse with a date library after the regex confirms the format.

5. The "Everything Between Tags" Problem

<([a-zA-Z][a-zA-Z0-9]*)>(.*?)<\/\1>

  • <([a-zA-Z][a-zA-Z0-9]*)> — opening tag: <, a letter, then optional alphanumeric characters, >. The parentheses capture the tag name.
  • (.*?) — content between tags. The ? after * makes it lazy — stop at the first closing tag, not the last.
  • <\/\1> — closing tag: <, /, then (backreference to the first capture group, the tag name), >.

Without the lazy *?, <.*> applied to <div>hello</div> would match the entire string instead of just <div>. This is the #1 "why isn't my regex working" moment.

The Debugging Workflow I Actually Use

  1. Start with a known-good preset (email, URL, IPv4 from the tool's library)
  2. Tweak one thing at a time, watching the match highlights change in real-time
  3. Add edge cases to the test string: empty input, special chars, unicode
  4. Only move to production code when the tester shows exactly what you expect

I use the free Regex Tester at codetoolbox.pro/tools/regex-tester.html for this — it runs entirely in the browser, highlights matches instantly, and shows capture groups individually. No signup, no server uploads.


What's the regex that burned you the worst? Drop a comment — genuinely curious how many of us have been bitten by the same patterns.