You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The expression of start with function and regex function are conflicted:
attribute value start with: [@key~=value] yes
attribute value match regex: [@key~=value] yes
According to Jsoup selector syntax: http://jsoup.org/cookbook/extracting-data/selector-syntax
In the selector overview of Jsoup:
[attr^=value], [attr$=value], [attr_=value]: elements with attributes that start with, end with, or contain the value, e.g. [href_=/path/]
Hence I think the expression of start with in Xsoup should be that:
attribute value start with: [@key^=value]
The text was updated successfully, but these errors were encountered:
In the Extended syntax supported section:
https://github.com/code4craft/xsoup/blob/master/README.md
The expression of start with function and regex function are conflicted:
attribute value start with: [@key~=value] yes
attribute value match regex: [@key~=value] yes
According to Jsoup selector syntax:
http://jsoup.org/cookbook/extracting-data/selector-syntax
In the selector overview of Jsoup:
[attr^=value], [attr$=value], [attr_=value]: elements with attributes that start with, end with, or contain the value, e.g. [href_=/path/]
Hence I think the expression of start with in Xsoup should be that:
attribute value start with: [@key^=value]
The text was updated successfully, but these errors were encountered: