Hello!
The regex used here seems to only allow a comma or a semicolon after the bot's name.
As some people are using a custom separator, I think it could be a good idea to allow every symbol that isn't a letter or a number. The regex should then be [^a-zA-Z0-9] to match anything else.
Thanks for reading!
Hello! The regex used here seems to only allow a comma or a semicolon after the bot's name. As some people are using a custom separator, I think it could be a good idea to allow every symbol that isn't a letter or a number. The regex should then be
[^a-zA-Z0-9]
to match anything else. Thanks for reading!