scinfu / SwiftSoup

SwiftSoup: Pure Swift HTML Parser, with best of DOM, CSS, and jquery (Supports Linux, iOS, Mac, tvOS, watchOS)
https://scinfu.github.io/SwiftSoup/
MIT License
4.52k stars 345 forks source link

how to select class end with space #144

Closed m3u8playlist closed 4 years ago

m3u8playlist commented 4 years ago

like:

<div class="bar  "></div>

there is a space between r and "

scinfu commented 4 years ago

try this let sel: Elements = try html.select(":bar ") See Test form more examples

I close and if you need, open it again