quest5.net/wiki/LCase wrote:LCase ( string input )
quest5.net/wiki/Instr wrote:Instr ( string input , string search )
// Either this...
switch (LCase(text)) {
case ("yes") {
// Run script
}
}
// Or something like this...
if (Instr(LCase(text), "yes") > 0) {
// Run script
}