<?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: Calculate field expression for string concatenation - Python 3.5 in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226701#M17560</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did you add&amp;nbsp; "PYTHON_9.3" in order to use python... as in&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN&gt;arcpy&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;CalculateField_management&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;inTable&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN&gt;fieldName&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN&gt;expression&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN&gt;"PYTHON_9.3")&lt;/SPAN&gt; &lt;/CODE&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;and I think the indentation may be the first space in your expression.&amp;nbsp; In python ! marks replace [ and ] as field delimiters&amp;nbsp; From the &lt;STRONG&gt;&lt;A href="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/calculate-field.htm"&gt;help topic&lt;/A&gt; &lt;/STRONG&gt;for map and&lt;STRONG&gt;&lt;A href="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/calculate-field.htm"&gt; for Pro&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Jul 2017 17:40:10 GMT</pubDate>
    <dc:creator>DanPatterson_Retired</dc:creator>
    <dc:date>2017-07-11T17:40:10Z</dc:date>
    <item>
      <title>Calculate field expression for string concatenation - Python 3.5</title>
      <link>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226698#M17557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After updating a script from Python 2 to Python 3, I am now getting an 'ERROR 00539: Indentation Error: Unexpected indent &amp;lt;&amp;lt;expression&amp;gt;, line 1' on a line in my script. The line is not indented, and I tried removing all spaces and also re-adding spaces (ensuring no tabs were used). I am not sure where the error is. The line ran without error using Python 2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the original line:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;CalculateField_management &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;SubLayer_pp_trans_GUJoin_UniqueSubs&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"SUB1SUB2"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;' [SUB_1] + "," + [SUB_2] '&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&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;/P&gt;&lt;P&gt;I've tried:&amp;nbsp;&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;CalculateField_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;SubLayer_pp_trans_GUJoin_UniqueSubs&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"SUB1SUB2"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;' !SUB_1! +","+ !SUB_2! '&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&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;and (and various renditions of removing spaces)&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;CalculateField_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;SubLayer_pp_trans_GUJoin_UniqueSubs&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"SUB1SUB2"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;' [SUB_1] + "," + [SUB_2] '&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&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;with no luck. Any suggestions?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2017 17:15:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226698#M17557</guid>
      <dc:creator>TessOldemeyer</dc:creator>
      <dc:date>2017-07-11T17:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate field expression for string concatenation - Python 3.5</title>
      <link>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226699#M17558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you switch from ArcMap to Pro then?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see that you are not passing an expression type, which means you are evaluating VB and not Python.&amp;nbsp; Are you trying to work with VB or Python expressions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ArcGIS Pro &lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/calculate-field.htm" title="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/calculate-field.htm"&gt;Calculate Field—Data Management toolbox&lt;/A&gt;&amp;nbsp; documentation has a note of caution about VB expressions:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;&lt;SPAN style="color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ededed; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;&lt;STRONG&gt;Caution&lt;/STRONG&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ededed; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;Field calculations with a VB&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="-webkit-font-smoothing: antialiased; font-weight: bold; color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ededed; text-decoration-style: initial; text-decoration-color: initial;"&gt;Expression&lt;/SPAN&gt;&lt;SPAN style="color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ededed; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;type are not supported on 64-bit products, including&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="-webkit-font-smoothing: antialiased; color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ededed; text-decoration-style: initial; text-decoration-color: initial;"&gt;ArcGIS Pro&lt;/SPAN&gt;&lt;SPAN style="color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ededed; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="-webkit-font-smoothing: antialiased; color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ededed; text-decoration-style: initial; text-decoration-color: initial;"&gt;ArcGIS Desktop&lt;/SPAN&gt;&lt;SPAN style="color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ededed; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;—&lt;/SPAN&gt;&lt;SPAN class="" style="-webkit-font-smoothing: antialiased; color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ededed; text-decoration-style: initial; text-decoration-color: initial;"&gt;Background Geoprocessing (64-bit)&lt;/SPAN&gt;&lt;SPAN style="color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ededed; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;—and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="-webkit-font-smoothing: antialiased; color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ededed; text-decoration-style: initial; text-decoration-color: initial;"&gt;ArcGIS Server&lt;/SPAN&gt;&lt;SPAN style="color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ededed; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;. To successfully use&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="-webkit-font-smoothing: antialiased; color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ededed; text-decoration-style: initial; text-decoration-color: initial;"&gt;Calculate Field&lt;/SPAN&gt;&lt;SPAN style="color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ededed; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;in these products, expressions should be converted to Python, or in the case of&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="" style="-webkit-font-smoothing: antialiased; color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ededed; text-decoration-style: initial; text-decoration-color: initial;"&gt;Background Geoprocessing (64-bit)&lt;/SPAN&gt;&lt;SPAN style="color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ededed; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;"&gt;, background processing can alternatively be disabled.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2017 17:25:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226699#M17558</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2017-07-11T17:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate field expression for string concatenation - Python 3.5</title>
      <link>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226700#M17559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did switch from ArcMap to Pro. It sounds like Python expressions would be best. Makes sense. Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2017 17:34:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226700#M17559</guid>
      <dc:creator>TessOldemeyer</dc:creator>
      <dc:date>2017-07-11T17:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate field expression for string concatenation - Python 3.5</title>
      <link>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226701#M17560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did you add&amp;nbsp; "PYTHON_9.3" in order to use python... as in&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN&gt;arcpy&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;CalculateField_management&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;inTable&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN&gt;fieldName&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN&gt;expression&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN&gt;"PYTHON_9.3")&lt;/SPAN&gt; &lt;/CODE&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;and I think the indentation may be the first space in your expression.&amp;nbsp; In python ! marks replace [ and ] as field delimiters&amp;nbsp; From the &lt;STRONG&gt;&lt;A href="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/calculate-field.htm"&gt;help topic&lt;/A&gt; &lt;/STRONG&gt;for map and&lt;STRONG&gt;&lt;A href="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/calculate-field.htm"&gt; for Pro&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2017 17:40:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226701#M17560</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-07-11T17:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate field expression for string concatenation - Python 3.5</title>
      <link>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226702#M17561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This seemed to do the trick. Thanks!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;CalculateField_management&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;SubLayer_pp_trans_GUJoin_UniqueSubs&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"SUB1SUB2"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'!SUB_1! + "," + !SUB_2!'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"PYTHON_9.3"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Jul 2017 18:29:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226702#M17561</guid>
      <dc:creator>TessOldemeyer</dc:creator>
      <dc:date>2017-07-11T18:29:54Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate field expression for string concatenation - Python 3.5</title>
      <link>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226703#M17562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/people/gardta"&gt;gardta&lt;/A&gt;‌you should mark Dan's answer as correct. It shows others a solution was found and acknowledges Dan's help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 13:48:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226703#M17562</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2017-07-12T13:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate field expression for string concatenation - Python 3.5</title>
      <link>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226704#M17563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Agreed. For some reason, I do not have the 'Mark as Correct' option. I am viewing the discussion in&amp;nbsp;All Places &amp;gt; Developers &amp;gt; GIS Developers &amp;gt; Python &amp;gt; Discussions in Chrome. I have also tried accessing it from both the email notification link and from my profile. I am logged in. I also referred to &lt;A _jive_internal="true" href="https://community.esri.com/docs/DOC-2159"&gt;this document&lt;/A&gt;, and the button is not showing up on my discussion screen as shown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...I don't remember the button not showing up for past discussions and have used it frequently in the past. Maybe I'm missing something. &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt; I apologize for any inconveniences.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 17:53:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226704#M17563</guid>
      <dc:creator>TessOldemeyer</dc:creator>
      <dc:date>2017-07-12T17:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate field expression for string concatenation - Python 3.5</title>
      <link>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226705#M17564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tess... that is because this isn't a 'question' but a 'discussion'..&amp;nbsp; only 'questions' have the 'correct answer' option.&amp;nbsp; Discussions don't.&amp;nbsp; Glad I could help in any event &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 20:28:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226705#M17564</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2017-07-12T20:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate field expression for string concatenation - Python 3.5</title>
      <link>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226706#M17565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Makes sense.&amp;nbsp;&lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&amp;nbsp;I'll keep that in mind and will be sure to pay a bit more attention to where I am posting. Thanks again, and sorry about that!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 20:58:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226706#M17565</guid>
      <dc:creator>TessOldemeyer</dc:creator>
      <dc:date>2017-07-12T20:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate field expression for string concatenation - Python 3.5</title>
      <link>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226707#M17566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So should I! I had not noticed this was a "discussion" instead of a "question". I think we can forgive each other as there appears to be almost no difference except for a small icon under your title.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jul 2017 08:42:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226707#M17566</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2017-07-13T08:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate field expression for string concatenation - Python 3.5</title>
      <link>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226708#M17567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I converted it to a question and marked Dan's answer as correct.&amp;nbsp; If you need to change the "correct answer", you should be able to do that now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Jul 2017 16:14:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/calculate-field-expression-for-string/m-p/226708#M17567</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2017-07-17T16:14:33Z</dc:date>
    </item>
  </channel>
</rss>

