<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>
<br>
Thanks for the hint.</blockquote><div>&nbsp;</div><div>no pb <br></div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="Ih2E3d"><br>
</div>Are there parsers available to get say table data into some kind of collection?</blockquote><div><br>not directly&nbsp; (from what&nbsp; I know)<br><br>Have a look at XMLDOMParser addressBookXMLWithDTD but it&#39;s for XML files...<br>
<br>Maybe just cut the part of the stream you&#39;re interested in... when you get to &lt;td&gt; until &lt;/td&gt;... somethink like:<br><br>string := (HTTPClient httpGet: &#39;<a href="http://url.com/" target="_blank">http://url.com</a>&#39;) contents .<br>
a := (string indexOfSubCollection: &#39;&lt;table&gt;&#39;) + &#39;&lt;table&gt;&#39; size&nbsp; &quot;if this is the first table...&quot;<br>b := (string indexOfSubCollection: &#39;&lt;/table&gt;&#39;) - 1<br>string copyFrom: a to: b.<br>
...<br><br>than you work on the string to build your collection (#copyReplaceAll: with: can help)...&nbsp; quite hacky though ;) ... I&#39;m sure there are better options but that&#39;s all I can see now<br><br>Cédrick<br></div>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>
<div><div></div><div class="Wj3C7c"><br>
Lou<br>
-----------------------------------------------------------<br>
Louis LaBrunda<br>
Keystone Software Corp.<br>
SkypeMe callto://PhotonDemon<br>
mailto:<a href="mailto:Lou@Keystone-Software.com">Lou@Keystone-Software.com</a> <a href="http://www.Keystone-Software.com" target="_blank">http://www.Keystone-Software.com</a><br>
<br>
<br>
</div></div></blockquote></div><br>