We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It works fine without a '*' symbol. I tried to do something by myself, but it's too strong wizardy for me
problem placed somewhere in Options.java at line 424
The text was updated successfully, but these errors were encountered:
I probably fixed it with
if (skipped.indexOf('*')==0 && skipped.lastIndexOf('*')==skipped.length()-1){ return name.contains(skipped.subSequence(1, skipped.length()-1)); } if (skipped.indexOf('*')==skipped.length()-1){ return name.startsWith(skipped.substring(0, skipped.length()-1)); } if (skipped.indexOf('*')==0){ return name.endsWith(skipped.substring(1, skipped.length())); } /*String[] values = (String[])Pattern.compile("\\*") .splitAsStream(skipped) .map(v -> Pattern.quote(v)) .toArray(); String matcher = String.join("(.*)", values); if (Pattern.compile(matcher).matcher(name).matches()) { System.out.println(name +" :: "+skipped+" :: true"); return true; }*/
Seems REGEX throw some error
Sorry, something went wrong.
No branches or pull requests
It works fine without a '*' symbol. I tried to do something by myself, but it's too strong wizardy for me
problem placed somewhere in Options.java at line 424
The text was updated successfully, but these errors were encountered: