> For the complete documentation index, see [llms.txt](https://trizen.gitbook.io/sidef-lang/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://trizen.gitbook.io/sidef-lang/programming_tasks/w/web_scraping.md).

# Web scraping

```ruby
var ua = frequire('LWP::Simple')
var url = 'http://tycho.usno.navy.mil/cgi-bin/timer.pl'
var match = /<BR>(.+? UTC)/.match(ua.get(url))
say match[0] if match
```

#### Output:

```
Oct. 27, 00:20:50 UTC
```
