<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How may I extract HTML tables from a column in a shapefile? in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/how-may-i-extract-html-tables-from-a-column-in-a/m-p/344385#M19622</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had to do something like this a real long time ago... I can give you sort of an outline of the steps I did my memory is not that good....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp; Extract all the html table column to save it as text&amp;nbsp; (all records)&amp;nbsp; (I believe I had to add a unique Id to the column snippet to link upon later I used the field calculator to insert the additional column code &amp;lt;td&amp;gt;Unique ID&amp;lt;/td&amp;gt;)&lt;/P&gt;&lt;P&gt;2.&amp;nbsp; I am assuming that the table snippets are valid complete table codes:&amp;nbsp; add &amp;lt;Html&amp;gt; [ all your table snippets] &amp;lt;/HTML&amp;gt; to the file.&lt;/P&gt;&lt;P&gt;3.&amp;nbsp; Using excel import html table ...&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got this idea from this web site: &lt;A href="http://www.mrkent.com/tools/converter/" title="http://www.mrkent.com/tools/converter/"&gt;HTML TABLE TO EXCEL SPREADSHEET&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 Mar 2016 18:00:32 GMT</pubDate>
    <dc:creator>TedKowal</dc:creator>
    <dc:date>2016-03-15T18:00:32Z</dc:date>
    <item>
      <title>How may I extract HTML tables from a column in a shapefile?</title>
      <link>https://community.esri.com/t5/data-management-questions/how-may-i-extract-html-tables-from-a-column-in-a/m-p/344383#M19620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a shapefile which contains the elements needed for a small HTML table in one of the columns.&amp;nbsp; Each record has a table.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An example of the resulting table is attached.&amp;nbsp; This is a sample record:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt; &amp;lt;table border="1" padding="0"&amp;gt; &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;SPANID&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;20&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;PLACEMENT&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;underground&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;OWNER&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;FIBERLIGHT&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;DESIGNATED&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Backbone&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt; &amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;STRANDS&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;36&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a good way to convert this column of data into a useful spatial or non-spatial table?&amp;nbsp; Or, should I parse it from what I already have?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Mar 2016 12:49:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-may-i-extract-html-tables-from-a-column-in-a/m-p/344383#M19620</guid>
      <dc:creator>JayJohnson2</dc:creator>
      <dc:date>2016-03-15T12:49:55Z</dc:date>
    </item>
    <item>
      <title>Re: How may I extract HTML tables from a column in a shapefile?</title>
      <link>https://community.esri.com/t5/data-management-questions/how-may-i-extract-html-tables-from-a-column-in-a/m-p/344384#M19621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think you'll find an out-of-the-box tool to do this for you, so you'll need to parse it yourself. I'd suggest creating new fields in the current table rather than creating a new table for each row, but it may depend on your data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Mar 2016 16:24:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-may-i-extract-html-tables-from-a-column-in-a/m-p/344384#M19621</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2016-03-15T16:24:09Z</dc:date>
    </item>
    <item>
      <title>Re: How may I extract HTML tables from a column in a shapefile?</title>
      <link>https://community.esri.com/t5/data-management-questions/how-may-i-extract-html-tables-from-a-column-in-a/m-p/344385#M19622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had to do something like this a real long time ago... I can give you sort of an outline of the steps I did my memory is not that good....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp; Extract all the html table column to save it as text&amp;nbsp; (all records)&amp;nbsp; (I believe I had to add a unique Id to the column snippet to link upon later I used the field calculator to insert the additional column code &amp;lt;td&amp;gt;Unique ID&amp;lt;/td&amp;gt;)&lt;/P&gt;&lt;P&gt;2.&amp;nbsp; I am assuming that the table snippets are valid complete table codes:&amp;nbsp; add &amp;lt;Html&amp;gt; [ all your table snippets] &amp;lt;/HTML&amp;gt; to the file.&lt;/P&gt;&lt;P&gt;3.&amp;nbsp; Using excel import html table ...&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got this idea from this web site: &lt;A href="http://www.mrkent.com/tools/converter/" title="http://www.mrkent.com/tools/converter/"&gt;HTML TABLE TO EXCEL SPREADSHEET&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Mar 2016 18:00:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-may-i-extract-html-tables-from-a-column-in-a/m-p/344385#M19622</guid>
      <dc:creator>TedKowal</dc:creator>
      <dc:date>2016-03-15T18:00:32Z</dc:date>
    </item>
  </channel>
</rss>

