WhatsApp Group Number Extractor
Extract phone numbers starting with +880 from your WhatsApp group member list. Paste the HTML content below and extract the numbers.
Extracted Numbers
0 numbers foundExtracted numbers will appear here
How to Use
- Open your WhatsApp group in a web browser
- Right-click on the page and select "Inspect" to open Developer Tools
- In the Elements panel, find the section containing member phone numbers
- Right-click on the element containing numbers and select "Copy" → "Copy Outer HTML"
- Paste the copied HTML into the text area above
- Click "Extract Numbers" to find all numbers starting with +880
- Use "Copy All Numbers" to copy the results to your clipboard
Pro Tip: If you're familiar with browser consoles, you can also use this code directly:
const numbers = Array.from(document.querySelectorAll('span')).filter(span => span.textContent.includes('+880')).map(span => span.textContent.trim());
