Skip to content

Instantly share code, notes, and snippets.

@scheakur
Created February 3, 2014 14:00
Show Gist options
  • Save scheakur/8784322 to your computer and use it in GitHub Desktop.
Save scheakur/8784322 to your computer and use it in GitHub Desktop.
@Grapes(@Grab('org.jsoup:jsoup:1.7.3'))
import org.jsoup.Jsoup;
def text = Jsoup.parse('''
<div>
<div class="foo">hoge</div>
<div class="bar">fuga</div>
<div class="foo">piyo</div>
</div>
''').select('.foo').text()
println(text) // hoge piyo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment