Skip to content

Instantly share code, notes, and snippets.

@methyl
Created February 6, 2020 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save methyl/217597128cbda6d3aede1f6eae4d4b7a to your computer and use it in GitHub Desktop.
Save methyl/217597128cbda6d3aede1f6eae4d4b7a to your computer and use it in GitHub Desktop.
Extract entities from Google NLP API demo - surferseo.com
// just paste it in your chrome developer tools console
txt = "When Would I Need a ⟨Survival Knife⟩"
console.log(Array.from(txt.matchAll(/⟨(.+?)⟩/g)).map(a => a[1]).join("\n"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment