Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Bidthedog/dc04ac5c1aa979c9bd309df83a5e8bec to your computer and use it in GitHub Desktop.
Save Bidthedog/dc04ac5c1aa979c9bd309df83a5e8bec to your computer and use it in GitHub Desktop.
$words = (((Invoke-WebRequest -Uri "https://www.morewords.com/contains/ei/").ParsedHtml).All.Tags("p")[3] | % InnerText) -split '\n'
Write-Host "Total Words: $($words.Count)
Matching 'cei': $(($words | ? { $_ -match "cei" }).Count)
Matching 'ei': $(($words | ? { $_ -match "[^c]ei" }).Count)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment