<?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 to edit out illegal characters in columns in large tables (&amp;gt;1000 files) in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430388#M24623</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes that works just fine, however, that solution is run on the database and not gis software, and specifically it removes "ALL" characters except for the ones with ASCII values between 0 and 255. &amp;nbsp;So spaces and decimal values are not stripped. &amp;nbsp;In this case, I am assuming the individual wanted to use the field calculate and only remove certain characters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Jun 2017 14:43:44 GMT</pubDate>
    <dc:creator>TedKowal</dc:creator>
    <dc:date>2017-06-19T14:43:44Z</dc:date>
    <item>
      <title>how to edit out illegal characters in columns in large tables (&gt;1000 files)</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430379#M24614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm attempting to join two tables. &amp;nbsp;&lt;/P&gt;&lt;P&gt;The join validation report indicates several fields with illegal characters. &amp;nbsp;I'm editing a large county file with over 1000 parcels. &amp;nbsp;How to remove characters such as "-" or "/" for a whole column of data without doing it manually?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jun 2017 18:51:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430379#M24614</guid>
      <dc:creator>LarryPearson</dc:creator>
      <dc:date>2017-06-15T18:51:19Z</dc:date>
    </item>
    <item>
      <title>Re: how to edit out illegal characters in columns in large tables (&gt;1000 files)</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430380#M24615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how many illegal characters? If you can use the field calculator a simple !YourFieldName!.replace('-','') using a python parser would be a simple approach.&amp;nbsp; For many replacements a small function (def) could be written&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Jun 2017 20:13:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430380#M24615</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-06-15T20:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: how to edit out illegal characters in columns in large tables (&gt;1000 files)</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430381#M24616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To add on to Dan's comment. &amp;nbsp;If you have a list of special characters to remove you can do it in the field calculater inside a def with something similiar to .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; string
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; StringThatNeedsWork &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; "The &lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt; Time ! was well f$$$&lt;SPAN class="comment token"&gt;### spent&amp;nbsp;&amp;nbsp; don't, you agree? 12345% 1.234"&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; removethesechars &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'$'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;'&lt;SPAN class="comment token"&gt;#','%','-']&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; StringThatNeedsWork&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;translate&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;None&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;''&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;removethesechars&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;


&lt;SPAN class="string token"&gt;"The&amp;nbsp; Time ! was well f spent&amp;nbsp;&amp;nbsp; don't, you agree? 12345 1.234"&lt;/SPAN&gt;
‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:21:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430381#M24616</guid>
      <dc:creator>TedKowal</dc:creator>
      <dc:date>2021-12-11T19:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: how to edit out illegal characters in columns in large tables (&gt;1000 files)</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430382#M24617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If by illegal characters you mean all non-alphanumeric characters, you can use a list comprehension with str.isalnum():&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;testString &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; 'foo&lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;bar&lt;SPAN class="comment token"&gt;#baz?qux@127/\\9]'&lt;/SPAN&gt;
testStringCleaned &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;""&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;x &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; x &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; testString &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; x&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;isalnum&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;# foobarbazqux1279‍‍&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/PRE&gt;&lt;P&gt;Found on Stack Overflow - &lt;A href="https://stackoverflow.com/questions/295135/turn-a-string-into-a-valid-filename" rel="nofollow noopener noreferrer" target="_blank"&gt;Turn a string into a valid filename?&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:21:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430382#M24617</guid>
      <dc:creator>mfcallahan</dc:creator>
      <dc:date>2021-12-11T19:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: how to edit out illegal characters in columns in large tables (&gt;1000 files)</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430383#M24618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Note that using .isalnum() will strip out significant '." and spaces as well &amp;nbsp; testString = " North Highway Route 2.1" &amp;nbsp;---&amp;gt; "NorthHighwayRoute21" &amp;nbsp;if that is ok then it is a quick easy way!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 15:20:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430383#M24618</guid>
      <dc:creator>TedKowal</dc:creator>
      <dc:date>2017-06-16T15:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: how to edit out illegal characters in columns in large tables (&gt;1000 files)</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430384#M24619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sometimes I do this, and replace and illegal chars or spaces with an underscore:&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;testStringCleaned &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;""&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;join&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;x &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; x&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;isalnum&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;else&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"_"&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; x &lt;SPAN class="keyword token"&gt;in&lt;/SPAN&gt; testString&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; ‍&lt;SPAN class="comment token"&gt;# foo_bar_baz_qux_127__9_&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 15:43:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430384#M24619</guid>
      <dc:creator>mfcallahan</dc:creator>
      <dc:date>2017-06-16T15:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: how to edit out illegal characters in columns in large tables (&gt;1000 files)</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430385#M24620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ted , What about your answer in same question? Does it work?&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/message/688777-odd-special-character-in-field-value"&gt;https://community.esri.com/message/688777-odd-special-character-in-field-value&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 16:40:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430385#M24620</guid>
      <dc:creator>AbdullahAnter</dc:creator>
      <dc:date>2017-06-16T16:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: how to edit out illegal characters in columns in large tables (&gt;1000 files)</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430386#M24621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In additional to &lt;A class="link-titled" href="https://docs.python.org/2/library/string.html" title="https://docs.python.org/2/library/string.html" rel="nofollow noopener noreferrer" target="_blank"&gt;7.1. string — Common string operations — Python 2.7.13 documentation&lt;/A&gt; , &lt;A class="link-titled" href="https://docs.python.org/2/library/re.html" title="https://docs.python.org/2/library/re.html" rel="nofollow noopener noreferrer" target="_blank"&gt;7.2. re — Regular expression operations — Python 2.7.13 documentation&lt;/A&gt; can also be used: &lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; StringThatNeedsWork &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; "The &lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt; Time ! was well f$$$&lt;SPAN class="comment token"&gt;### spent&amp;nbsp;&amp;nbsp; don't, you agree? 12345% 1.234"&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; re&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;sub&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;"&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;$&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="comment token"&gt;#,%,-]","", StringThatNeedsWork)&lt;/SPAN&gt;
&lt;SPAN class="string token"&gt;"The&amp;nbsp; Time ! was well f spent&amp;nbsp;&amp;nbsp; don't you agree? 12345 1.234"&lt;/SPAN&gt;
&lt;SPAN class="operator token"&gt;&amp;gt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 19:21:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430386#M24621</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2021-12-11T19:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: how to edit out illegal characters in columns in large tables (&gt;1000 files)</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430387#M24622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Of course, we are all missing the line in the title where the OP say '1000 files'&amp;nbsp; ... which pretty much makes our field calculator expression suggestions less than satisfactory.&amp;nbsp; In such cases, it is best to have the person that put them in, in the first place, remove them&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2017 16:57:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430387#M24622</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-06-16T16:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: how to edit out illegal characters in columns in large tables (&gt;1000 files)</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430388#M24623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes that works just fine, however, that solution is run on the database and not gis software, and specifically it removes "ALL" characters except for the ones with ASCII values between 0 and 255. &amp;nbsp;So spaces and decimal values are not stripped. &amp;nbsp;In this case, I am assuming the individual wanted to use the field calculate and only remove certain characters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2017 14:43:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430388#M24623</guid>
      <dc:creator>TedKowal</dc:creator>
      <dc:date>2017-06-19T14:43:44Z</dc:date>
    </item>
    <item>
      <title>Re: how to edit out illegal characters in columns in large tables (&gt;1000 files)</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430389#M24624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I like yours better! &amp;nbsp; I have a long way to go in learning Python!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2017 14:44:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430389#M24624</guid>
      <dc:creator>TedKowal</dc:creator>
      <dc:date>2017-06-19T14:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: how to edit out illegal characters in columns in large tables (&gt;1000 files)</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430390#M24625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If they are simple text files? &amp;nbsp;&lt;A class="link-titled" href="https://stackoverflow.com/questions/4205854/python-way-to-recursively-find-and-replace-string-in-text-files" title="https://stackoverflow.com/questions/4205854/python-way-to-recursively-find-and-replace-string-in-text-files"&gt;Python - Way to recursively find and replace string in text files - Stack Overflow&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2017 14:49:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430390#M24625</guid>
      <dc:creator>TedKowal</dc:creator>
      <dc:date>2017-06-19T14:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to edit out illegal characters in columns in large tables (&gt;1000 files)</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430391#M24626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I prefer the whitelist approach when cleaning up file names, ID columns, etc.&amp;nbsp; Blacklisting chars you don't want like "$%&amp;amp;*@!" etc still would allow things like æ Ñ █ ╬ all of which are valid ascii characters, but probably not charterers you'd want in a primary key or filename.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2017 17:12:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-edit-out-illegal-characters-in-columns-in/m-p/430391#M24626</guid>
      <dc:creator>mfcallahan</dc:creator>
      <dc:date>2017-06-19T17:12:31Z</dc:date>
    </item>
  </channel>
</rss>

