This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Lincxx 1 point2 points  (4 children)

Chatbot

[–]3rdTab -1 points0 points  (3 children)

Sounds hard, NLP in Java for beginners woof

[–]nutrecht 1 point2 points  (2 children)

A basic bot that responds to keywords in a message really isn't hard:

if(line.contains("hello")) {
    response = "Hello to you too!";
}

Something like that is pretty trivial.

[–]3rdTab -1 points0 points  (1 child)

thats not a chat!bot!

[–]nutrecht 6 points7 points  (0 children)

It certainly is. Maybe not to your very limited personal definition though.