Clone and edit this document
Runkit
Runkit
home page
user forum
new notebook
clone notebook
download notebook
support & documentation
log in
sign up
new notebook
help & feedback
clone this notebook
download this notebook
Sign In
Sign Up
template question-answer
node v18.11.0
version:
master
endpoint
share
tweet
const nlp = require('compromise') let doc = nlp('What was WW2?') let m = doc.match('what [<verb>(is|was)] [<subj>#Noun+]') let out = '-' if(m.found){ out= m.groups('subj').text() + ' ' + m.groups('verb').text() +' ...' } out
Loading…
no comments
sign in
to comment