<?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: Conversion between Python and Arcade in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/conversion-between-python-and-arcade/m-p/1359641#M76233</link>
    <description>&lt;P&gt;&lt;A href="https://developers.arcgis.com/arcade/function-reference/" target="_blank"&gt;Function Reference | ArcGIS Arcade | ArcGIS Developers&lt;/A&gt;&lt;/P&gt;&lt;P&gt;may be of use.. perhaps the Text portion&lt;/P&gt;</description>
    <pubDate>Tue, 12 Dec 2023 13:46:23 GMT</pubDate>
    <dc:creator>DanPatterson</dc:creator>
    <dc:date>2023-12-12T13:46:23Z</dc:date>
    <item>
      <title>Conversion between Python and Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/conversion-between-python-and-arcade/m-p/1359585#M76228</link>
      <description>&lt;P&gt;Conversion between Python and Arcade&lt;BR /&gt;I can write an expression in Python to get new data in a specific order through the expression ( !BQCODE![3:5] ) but I do not know how to write that expression in the Arcade language.&lt;BR /&gt;Is there anyone who can help?&lt;BR /&gt;Gratefully&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2023 10:51:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/conversion-between-python-and-arcade/m-p/1359585#M76228</guid>
      <dc:creator>HusamJubeh</dc:creator>
      <dc:date>2023-12-12T10:51:13Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion between Python and Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/conversion-between-python-and-arcade/m-p/1359641#M76233</link>
      <description>&lt;P&gt;&lt;A href="https://developers.arcgis.com/arcade/function-reference/" target="_blank"&gt;Function Reference | ArcGIS Arcade | ArcGIS Developers&lt;/A&gt;&lt;/P&gt;&lt;P&gt;may be of use.. perhaps the Text portion&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2023 13:46:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/conversion-between-python-and-arcade/m-p/1359641#M76233</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2023-12-12T13:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion between Python and Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/conversion-between-python-and-arcade/m-p/1359644#M76234</link>
      <description>&lt;P&gt;It helps to provide information about data types and an example or two.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2023 13:57:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/conversion-between-python-and-arcade/m-p/1359644#M76234</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2023-12-12T13:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion between Python and Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/conversion-between-python-and-arcade/m-p/1359814#M76260</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;BR /&gt;But I want to get to the expression quickly. I searched for it but did not find it.&lt;BR /&gt;Can you write the expression here??&lt;BR /&gt;Gratefully&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2023 17:54:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/conversion-between-python-and-arcade/m-p/1359814#M76260</guid>
      <dc:creator>HusamJubeh</dc:creator>
      <dc:date>2023-12-12T17:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion between Python and Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/conversion-between-python-and-arcade/m-p/1359815#M76261</link>
      <description>&lt;P&gt;correct&lt;BR /&gt;but I cannot reach the correct expression in Arcade, but in Python I know it&lt;/P&gt;&lt;P&gt;can you help me ؟&lt;/P&gt;&lt;P&gt;Gratefully&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2023 17:55:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/conversion-between-python-and-arcade/m-p/1359815#M76261</guid>
      <dc:creator>HusamJubeh</dc:creator>
      <dc:date>2023-12-12T17:55:44Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion between Python and Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/conversion-between-python-and-arcade/m-p/1360134#M76281</link>
      <description>&lt;P&gt;In the Calculate Field tool, the Arcade expression&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Mid($feature.BQCODE, 3, 2)&lt;/PRE&gt;&lt;P&gt;is the equivalent of the Python expression&lt;/P&gt;&lt;PRE&gt;!BQCODE![3:5]&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Python uses a start index and an end index.&amp;nbsp; Arcade uses the start index and the number of characters.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 02:43:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/conversion-between-python-and-arcade/m-p/1360134#M76281</guid>
      <dc:creator>MicZatorsky_AEC</dc:creator>
      <dc:date>2023-12-13T02:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: Conversion between Python and Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/conversion-between-python-and-arcade/m-p/1360177#M76290</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_heart_eyes:"&gt;😍&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 08:46:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/conversion-between-python-and-arcade/m-p/1360177#M76290</guid>
      <dc:creator>HusamJubeh</dc:creator>
      <dc:date>2023-12-13T08:46:40Z</dc:date>
    </item>
  </channel>
</rss>

