aichaos / rivescript-java

A RiveScript interpreter for Java. RiveScript is a scripting language for chatterbots.
http://www.rivescript.com
MIT License
64 stars 38 forks source link

Multiple/Alternative Triggers #58

Closed bhatmanjokes closed 6 years ago

bhatmanjokes commented 6 years ago

I would like to give multiple triggers for a single response, also i would like to access the '*' within them. For example:

+ my name *
+ people call me *
+ * is what you should call me
- Ok, I will call you <star>.

What would be the correct way of doing this ?

kirsle commented 6 years ago

Maybe:

+ (my name is|people call me) *
- Ok, I will call you <star2>.

+ * is what you should call me
@ my name is <star>
bhatmanjokes commented 6 years ago

It is now working!! Thank you for your timely response!!