-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Command Future Error with Sync API? #324
Comments
The message you send if you have no clients found to the pattern is above 1024 characters (every character which need to escape count 2 characters) ... i changed it up so it does what i though you tried to do :) |
When using String input = "test with a few white spaces";
String[] splitWithoutRegEx = input.split(" ");
String[] splitWithRegEx = input.split("\\s+"); Which would result in an output like this:
As you can see, |
Better ? 😄 : hastebin.com |
Hey,
I always get this error when I use "dean" as an argument to this command. For other arguments not ..?! Unfortunately, I do not remember what to do there? thank you in advance
https://i.imgur.com/m45pkky.png (Error)
https://hastebin.com/enobolekuy.cs (Code)
The text was updated successfully, but these errors were encountered: