RyderCRD
RyderCRD
I was trying to reimplement your issue, could you please share url of the html?
Hi, I think jsoup currently does not support case-sensitive select() and does not depend on whether it is html strict mode. from [here](https://jsoup.org/apidocs/org/jsoup/select/Selector.html) you can see that selectors in jsoup...
I have tried to fix this issue, following is my pull request. #1527 Now you can case-sensitively select classes with .select(".classname", true) if you want.
[Here](https://github.com/Ryderxxx/jsoup)‘s the code. Hope this helps you.
You're welcome! Just a reminder, you may also write like this to automatically determine whether to use strict mode. ``` boolean htmlStrictMode; try{ htmlStrictMode = doc.documentType().name().equals("html"); }catch (NullPointerException e) {...
Please let me take this issue as part of my course project on SUSTech EEE5058. I found that the direct reason for this unexpected result is the difference between the...