Property Value
Name
Age
Your Living!

Explanation

It's small tool which I code when I was doing my bachelor's back in 2015. It's simple demonstration of Rule based NLP. It uses regex to extract name, age & place you live. Here are all Regular expression used here

Name

/(?:(?:my name is ?)|(?:I am ))([A-Za-z]+)/gi

Age

/(?:(\d+ ?){1})(?:years old)|(?:my age is ?)(\d+)/gi

place you live

/live in (\w+)/gi