// Basic RegEx Example Bot // A simple example of regular expression matching using System; namespace ChatBot { class BasicRegexExampleBot : BasicBot { public override string HandleMessage(string message, string user) { if (User.RegexMatch("hello", message)) { return "hi there!"; } else { return "Hello! Hello! Is anyone there?"; } } } }