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
In PathRule.java, Crawler4j handled to escape the *,$ special chars.
if (ch == '\') { // Handle escaped * and $ characters char nch = pos < pattern.length() - 1 ? pattern.charAt(pos + 1) : 0; if (nch == '*' || ch == '$') { quoteBuf.append(nch); ++pos; // We need to skip one character } else { quoteBuf.append(ch); } }
Here " nch == '' || ch == '$' " should be " nch == '' || nch == '$' " right ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In PathRule.java, Crawler4j handled to escape the *,$ special chars.
Here " nch == '' || ch == '$' " should be " nch == '' || nch == '$' " right ?
The text was updated successfully, but these errors were encountered: