1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
$web = iwr "https://www.jesusninoc.com/12/16/buscar-numeros-de-telefono-en-paginas-web-desde-powershell/" $matches="" foreach($linea in $web.Content -split "</div>") { if($linea -match "tel:") { if($linea -match "[1-9]{9}") { $matches.Values } } } |