इस टूल में कोई समस्या है?

«ईमेल एक्सट्रैक्टर ऑनलाइन» के बारे में

यह टूल टेक्स्ट के एक ब्लॉक से हर वैध ईमेल पते को खोजता और निकालता है। स्रोत पेस्ट करें — एक संपर्क पृष्ठ, एक लॉग फ़ाइल, एक निर्यात किया गया दस्तावेज़ — और टूल कॉपी करने के लिए तैयार ईमेल पतों की एक डुप्लिकेट हटाई गई सूची लौटाता है।

यह पैटर्न मिलान का उपयोग करता है जो मानक RFC-अनुपालन वाले ईमेल फ़ॉर्मेट को पहचानता है, जिसमें डॉट्स, प्लस टैग और विभिन्न TLDs शामिल हैं।

इसका जिम्मेदारी से उपयोग करें। यह टूल वैध उद्देश्यों के लिए है।

इस टूल का उपयोग कैसे करें

How to pull email addresses out of arbitrary text

  1. Paste the text

    Drop any text — a CSV column, a chat log, an HTML page source — into the "Text" field. The tool scans the whole input with a single regex; line breaks and other prose around the addresses are ignored.

  2. Press Run

    Result returns `emails` (array of matched addresses) and `count` (unique count). Duplicates are de-duplicated case-insensitively, so `Hi@Example.COM` and `hi@example.com` become a single entry.

  3. What the regex catches

    Local part of `[A-Za-z0-9._%+-]+`, domain with at least one dot. Plus-addressing (`a+b@c.com`) is captured. Quoted-local-parts (`"strange name"@x.com`) and IP-literal hosts aren't — they're <0.01% of real addresses.

  4. Cleanup pass

    Run `email-validator` over each extracted address if you need stricter checking; this extractor is intentionally permissive so that messy real-world text gives high recall. Always combine with manual review before sending bulk mail — and respect anti-spam law.