<?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: Extract Attributes from a Field in ArcMap Questions</title>
    <link>https://community.esri.com/t5/arcmap-questions/extract-attributes-from-a-field/m-p/1201037#M3958</link>
    <description>&lt;P&gt;I don't see your attached image...&lt;/P&gt;</description>
    <pubDate>Tue, 09 Aug 2022 20:10:56 GMT</pubDate>
    <dc:creator>FrancisClergue</dc:creator>
    <dc:date>2022-08-09T20:10:56Z</dc:date>
    <item>
      <title>Extract Attributes from a Field</title>
      <link>https://community.esri.com/t5/arcmap-questions/extract-attributes-from-a-field/m-p/1201034#M3957</link>
      <description>&lt;P&gt;Please see the attached image. Each of the underlined section of the string needs to go to its respective field.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently all the information is within one field. What's the best way to extract information I need and place it in their respective fields.?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/48188i4A305DBF96B44DD6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 20:14:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcmap-questions/extract-attributes-from-a-field/m-p/1201034#M3957</guid>
      <dc:creator>aam</dc:creator>
      <dc:date>2022-08-09T20:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Attributes from a Field</title>
      <link>https://community.esri.com/t5/arcmap-questions/extract-attributes-from-a-field/m-p/1201037#M3958</link>
      <description>&lt;P&gt;I don't see your attached image...&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 20:10:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcmap-questions/extract-attributes-from-a-field/m-p/1201037#M3958</guid>
      <dc:creator>FrancisClergue</dc:creator>
      <dc:date>2022-08-09T20:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Attributes from a Field</title>
      <link>https://community.esri.com/t5/arcmap-questions/extract-attributes-from-a-field/m-p/1201047#M3959</link>
      <description>&lt;P&gt;Thank you for pointing that out. Post has been updated with image.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 20:14:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcmap-questions/extract-attributes-from-a-field/m-p/1201047#M3959</guid>
      <dc:creator>aam</dc:creator>
      <dc:date>2022-08-09T20:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Attributes from a Field</title>
      <link>https://community.esri.com/t5/arcmap-questions/extract-attributes-from-a-field/m-p/1201060#M3960</link>
      <description>&lt;P&gt;I'd be inclined to export the attribute table to a .dbf and try to separate the values in MS Access.&amp;nbsp; Doing a little testing, you'd:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;import the .dbf in Access&lt;/LI&gt;&lt;LI&gt;copy the entire field of values you want to separate from Access and paste into a .txt. file&lt;/LI&gt;&lt;LI&gt;find and replace &amp;lt;br&amp;gt; with a comma (could also do a series of finds and replaces to replace each &amp;lt;br&amp;gt; and the following field name and unnecessary spaces with a comma)&lt;/LI&gt;&lt;LI&gt;import back into Access as a comma delimited text file, which will put each value into its own field&lt;/LI&gt;&lt;LI&gt;use the RIGHT() function to&amp;nbsp;to get rid of the field name (like From:) with an update query if you didn't find and replace them out above (could just do this in ArcMap with the same field calculator function)&lt;/LI&gt;&lt;LI&gt;add all the appropriate fields to the attribute table in ArcMap&lt;/LI&gt;&lt;LI&gt;export the Access table you made to a .dbf and re-import to ArcMap&lt;/LI&gt;&lt;LI&gt;join the table with OBJECTID&lt;/LI&gt;&lt;LI&gt;use field calculator to copy over the separated values from the joined table to each corresponding field you added above to the master attribute table&lt;/LI&gt;&lt;LI&gt;remove the join&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Something like that...clunky, but if it's a one-time job it shouldn't take long.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 20:49:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcmap-questions/extract-attributes-from-a-field/m-p/1201060#M3960</guid>
      <dc:creator>FrancisClergue</dc:creator>
      <dc:date>2022-08-09T20:49:42Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Attributes from a Field</title>
      <link>https://community.esri.com/t5/arcmap-questions/extract-attributes-from-a-field/m-p/1201128#M3961</link>
      <description>&lt;P&gt;Similar to&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/533929"&gt;@FrancisClergue&lt;/a&gt;&amp;nbsp;, but could open the txt file in Excel, replace the &amp;lt;br&amp;gt; with a colon, then text to columns using the colon as the delimiter.&amp;nbsp; Then just delete the columns you don't want.&lt;/P&gt;&lt;P&gt;R&lt;/P&gt;</description>
      <pubDate>Tue, 09 Aug 2022 23:02:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcmap-questions/extract-attributes-from-a-field/m-p/1201128#M3961</guid>
      <dc:creator>RhettZufelt</dc:creator>
      <dc:date>2022-08-09T23:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: Extract Attributes from a Field</title>
      <link>https://community.esri.com/t5/arcmap-questions/extract-attributes-from-a-field/m-p/1202356#M3973</link>
      <description>&lt;P&gt;I could also see you doing a lot of this with Python and string slicing or even using Pandas dataframes.&amp;nbsp; Lots of methods depending on your comfort zone.&lt;/P&gt;&lt;P&gt;I also think this could probably be accomplished with a combination of Arcade and Field Calculator.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2022 13:32:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcmap-questions/extract-attributes-from-a-field/m-p/1202356#M3973</guid>
      <dc:creator>Kara_Shindle</dc:creator>
      <dc:date>2022-08-12T13:32:07Z</dc:date>
    </item>
  </channel>
</rss>

