Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>A little TXR web scraping, with the help of <code>wget</code> to grab the page:</p> <pre><code>@(deffilter nobr ("&lt;br /&gt;" "")) @(deffilter brsp ("&lt;br /&gt;" " ")) @(deffilter nosp (" " "")) @(next "!wget 2&gt;/dev/null -O - http://www.amiriconstruction.co.uk/goodwoodgolf/scoretable.htm") &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; @(skip) &lt;div class="scoreTableArea"&gt; @(collect) &lt;h2 class="unify"&gt;@year - @event&lt;/h2&gt; @ (filter brsp event) @ (collect) &lt;tr&gt; &lt;td class="center"&gt;@pos&lt;/td&gt; &lt;td&gt;@player&lt;/td&gt; &lt;td&gt;@company&lt;/td&gt; &lt;td&gt;@date&lt;/td&gt; &lt;td class="center"&gt;@points&lt;/td&gt; &lt;/tr&gt; @ (filter nobr player company date points) @ (filter nosp pos points) @ (until) &lt;/tbody&gt; @ (end) @(end) @(output :filter :from_html) @ (repeat) Event: @event Year: @year DATE POS PT PLAYER COMPANY @ (repeat) @{date -10} @{pos -2} @{points 2} @{player 16} @company @ (end) @ (end) @(end) </code></pre> <p>Sample run:</p> <pre><code>$ txr scoretable.txr Event: Teeing off to Clobber Ken Year: 2011 DATE POS PT PLAYER COMPANY Sept 2011 1 40 John Durrant King Sumners Partnership Sept 2011 2 34 Grahame Pettit Amiri Construction Oct 2011 3 31 Tony Deacon Gleeds Oct 2011 4 29 Tony Boyle Lacey Hickey Caley Oct 2011 5 29 Richard Hemming Scott White and Hookins Sept 2011 6 29 Ian McCoy Selway Joyce June 2011 7 27 Julian Larkin C&amp;G Properties Sept 2011 8 25 Roque Menezes Capita Symonds June 2011 9 22 Shawn Lambert PWP Architects Sept 2011 10 22 Kevin Lendon Amiri Construction Event: Ken Watson (HNW Architects) Undisputed Amiri Golf Demon of the Downs Year: 2010 DATE POS PT PLAYER COMPANY 2010 1 40 Ken Watson HNW Architects 2010 2 37 David Heda London Clancy 2010 3 34 Gordon Brown Currie &amp; Brown 2010 4 32 Alistair Taylor Wildbrook Properties   5 30 Andy Goodridge City Estates   6 25 Russ Pitman Henderson Green   7 24 Phil Piper Piper Whitlock   8 23 Kevin Miller Urban Pulse Architects   9 19 Simon Asquith Godsall Arnold Partnership   10 19 Shawn Lambert PWP Architects   11 18 Martin Judd Davis Langdon </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload