<?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: Use partial paths in findAndReplaceWorkspacePaths in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/use-partial-paths-in-findandreplaceworkspacepaths/m-p/548227#M42777</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right. I'm trying to partially replace a string in the path. As I said in my original post the help guide states that it is possible to do partial strings. I need some help figuring out how to do that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Aug 2014 03:38:08 GMT</pubDate>
    <dc:creator>MikeOnzay</dc:creator>
    <dc:date>2014-08-29T03:38:08Z</dc:date>
    <item>
      <title>Use partial paths in findAndReplaceWorkspacePaths</title>
      <link>https://community.esri.com/t5/python-questions/use-partial-paths-in-findandreplaceworkspacepaths/m-p/548219#M42769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #4d4d4d; font-family: Arial, Helvetica, sans-serif;"&gt;I want to partially change the path for layers in an mxd from a letter drive to a UNC path. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4d4d4d; font-family: Arial, Helvetica, sans-serif;"&gt;The help page for updating and fixing datasources with arcpy states &lt;/SPAN&gt;&lt;SPAN style="color: #4d4d4d; font-family: Arial, Helvetica, sans-serif;"&gt;"...allows you to substitute an entire or partial string for a layer..." but I cannot figure out how to partially replace a path. I have an mxd with one layer that points to W:\Data\City\Planimetric\xyz_planimetric_data_2011.mdb&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4d4d4d; font-family: Arial, Helvetica, sans-serif;"&gt;This doesn't change the path.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14092556606507213 jive_text_macro" jivemacro_uid="_14092556606507213"&gt;
&lt;P&gt;import arcpy&lt;/P&gt;
&lt;P&gt;mxd = arcpy.mapping.MapDocument(r'C:\GIS\test\AppServerConnections.mxd')&lt;/P&gt;
&lt;P&gt;for lyr in arcpy.mapping.ListLayers(mxd):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; wp = lyr.workspacePath&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if 'W:' in wp:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; nwp = r"\\\gisserver2" + wp[2:]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mxd.findAndReplaceWorkspacePaths(wp,nwp)&lt;/P&gt;
&lt;P&gt;mxd.saveACopy(r"c:\gis\test\test2.mxd")&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;del mxd&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4d4d4d; font-family: Arial, Helvetica, sans-serif;"&gt;if I substitute add a print statement here&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14092559668372888" jivemacro_uid="_14092559668372888" modifiedtitle="true"&gt;
&lt;P&gt;if 'W:' in wp:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; nwp = r"\\gisserver2" + wp[2:]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; print nwp&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it prints as I would expect: \\gisserver2&lt;SPAN style="color: #4d4d4d; font-family: Arial, Helvetica, sans-serif;"&gt;\Data\City\Planimetric\xyz_planimetric_data_2011.mdb&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What am I missing?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2014 20:07:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/use-partial-paths-in-findandreplaceworkspacepaths/m-p/548219#M42769</guid>
      <dc:creator>MikeOnzay</dc:creator>
      <dc:date>2014-08-28T20:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: Use partial paths in findAndReplaceWorkspacePaths</title>
      <link>https://community.esri.com/t5/python-questions/use-partial-paths-in-findandreplaceworkspacepaths/m-p/548220#M42770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try lyr.findAndReplaceWorkspacePath(wp,nwp)&amp;nbsp; instead of mxd, you are changing mxd workspace path, not the layer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit: had Paths, not Path&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2014 20:11:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/use-partial-paths-in-findandreplaceworkspacepaths/m-p/548220#M42770</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2014-08-28T20:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: Use partial paths in findAndReplaceWorkspacePaths</title>
      <link>https://community.esri.com/t5/python-questions/use-partial-paths-in-findandreplaceworkspacepaths/m-p/548221#M42771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That throws an error from the mapping module.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="valueerror.JPG" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/5799_valueerror.JPG" style="width: 620px; height: 188px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2014 20:36:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/use-partial-paths-in-findandreplaceworkspacepaths/m-p/548221#M42771</guid>
      <dc:creator>MikeOnzay</dc:creator>
      <dc:date>2014-08-28T20:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: Use partial paths in findAndReplaceWorkspacePaths</title>
      <link>https://community.esri.com/t5/python-questions/use-partial-paths-in-findandreplaceworkspacepaths/m-p/548222#M42772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry I copy pasted from your post, but for a layer its&amp;nbsp; lyr.findAndReplaceWorkspacePath, not Paths&amp;nbsp; like in the mxd version.&amp;nbsp; Did you change that as well?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2014 20:44:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/use-partial-paths-in-findandreplaceworkspacepaths/m-p/548222#M42772</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2014-08-28T20:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: Use partial paths in findAndReplaceWorkspacePaths</title>
      <link>https://community.esri.com/t5/python-questions/use-partial-paths-in-findandreplaceworkspacepaths/m-p/548223#M42773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. Still getting errors.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2014 20:56:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/use-partial-paths-in-findandreplaceworkspacepaths/m-p/548223#M42773</guid>
      <dc:creator>MikeOnzay</dc:creator>
      <dc:date>2014-08-28T20:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: Use partial paths in findAndReplaceWorkspacePaths</title>
      <link>https://community.esri.com/t5/python-questions/use-partial-paths-in-findandreplaceworkspacepaths/m-p/548224#M42774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah okay I got it now, since you are replacing only a partial path, you only need to change&amp;nbsp; the part of the path that needs changing, not the whole path.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14092598489631920" jivemacro_uid="_14092598489631920"&gt;
&lt;P&gt;&lt;SPAN class="kn"&gt;import&lt;/SPAN&gt; &lt;SPAN class="nn"&gt;arcpy&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="n"&gt;mxd&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="n"&gt;arcpy&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;mapping&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;MapDocument&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt;&lt;SPAN class="s"&gt;r"C:\Project\Project.mxd"&lt;/SPAN&gt;&lt;SPAN class="p"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="k"&gt;for&lt;/SPAN&gt; &lt;SPAN class="n"&gt;lyr&lt;/SPAN&gt; &lt;SPAN class="ow"&gt;in&lt;/SPAN&gt; &lt;SPAN class="n"&gt;arcpy&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;mapping&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;ListLayers&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt;&lt;SPAN class="n"&gt;mxd&lt;/SPAN&gt;&lt;SPAN class="p"&gt;):&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="k"&gt;if&lt;/SPAN&gt; &lt;SPAN class="n"&gt;lyr&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;supports&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt;&lt;SPAN class="s"&gt;"DATASOURCE"&lt;/SPAN&gt;&lt;SPAN class="p"&gt;):&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="k"&gt;if&lt;/SPAN&gt; &lt;SPAN class="n"&gt;lyr&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;dataSource&lt;/SPAN&gt; &lt;SPAN class="o"&gt;==&lt;/SPAN&gt; &lt;SPAN class="s"&gt;r"C:\Project\Data\Parcels.gdb\MapIndex"&lt;/SPAN&gt;&lt;SPAN class="p"&gt;:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="n"&gt;lyr&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;findAndReplaceWorkspacePath&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt;&lt;SPAN class="s"&gt;r"Data"&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="s"&gt;r"Data2"&lt;/SPAN&gt;&lt;SPAN class="p"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="n"&gt;mxd&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;saveACopy&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt;&lt;SPAN class="s"&gt;r"C:\Project\Project2.mxd"&lt;/SPAN&gt;&lt;SPAN class="p"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="k"&gt;del&lt;/SPAN&gt; &lt;SPAN class="n"&gt;mxd&lt;/SPAN&gt;&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;In the example, it finds "Data" and replaces with "Data2", not giving a whole new path.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you are having it find the part of the path string that needs changing, in your case, from W:\ to \\gisserver2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this out&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14092601166094546" jivemacro_uid="_14092601166094546" modifiedtitle="true"&gt;
&lt;P&gt;&lt;SPAN class="keyword"&gt;if&lt;/SPAN&gt; &lt;SPAN class="string"&gt;'W:'&lt;/SPAN&gt; &lt;SPAN class="keyword"&gt;in&lt;/SPAN&gt; wp: &lt;/P&gt;
&lt;P&gt; wp = "W:"&lt;/P&gt;
&lt;P&gt; nwp = r&lt;SPAN class="string"&gt;"\\\gisserver2"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt; lyr.findAndReplaceWorkspacePath(wp,nwp)&amp;nbsp; &lt;/P&gt;

&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2014 21:08:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/use-partial-paths-in-findandreplaceworkspacepaths/m-p/548224#M42774</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2014-08-28T21:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: Use partial paths in findAndReplaceWorkspacePaths</title>
      <link>https://community.esri.com/t5/python-questions/use-partial-paths-in-findandreplaceworkspacepaths/m-p/548225#M42775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had success earlier today updating the SDE connection files using mxd.replaceWorkspaces. I was trying to do something similar for datasources on a network drive by trying to replace the drive letter with the UNC path. When I try to use lyr in my earlier code (I know I'm using a different method) I get the same or similar ValueError. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14092597798556015 jive_text_macro" jivemacro_uid="_14092597798556015" modifiedtitle="true"&gt;
&lt;P&gt;for lyr in arcpy.mapping.ListLayers(mxd):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if lyr.supports("WORKSPACEPATH"):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wp = lyr.workspacePath&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if '@RockGIS2' or 'RockGIS' in wp:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print wp&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #mxd.replaceWorkspaces("", "NONE", r"\\gisserver2\GIS_Resources\DirectConnect_ArcCatalog_ConnectionFiles\gisuser@rockgis2.sde","SDE_WORKSPACE")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr.findAndReplaceWorkspacePath(wp, r"\\gisserver2\GIS_Resources\DirectConnect_ArcCatalog_ConnectionFiles\gisuser@RockGIS2.sde")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if '@RockRaster' in wp:&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2014 21:15:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/use-partial-paths-in-findandreplaceworkspacepaths/m-p/548225#M42775</guid>
      <dc:creator>MikeOnzay</dc:creator>
      <dc:date>2014-08-28T21:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: Use partial paths in findAndReplaceWorkspacePaths</title>
      <link>https://community.esri.com/t5/python-questions/use-partial-paths-in-findandreplaceworkspacepaths/m-p/548226#M42776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Replace Workspaces replaces the entire string path and type, findandReplaceWorkspacepath, finds the first string parameter in your workspace path , and replaces it with the second string, you aren't taking an entire path and replacing it with a new one.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All you are trying to do is replace your lettered drive "W:" or whatever with a network path r"\\gisserver2" or whatever.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Aug 2014 21:21:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/use-partial-paths-in-findandreplaceworkspacepaths/m-p/548226#M42776</guid>
      <dc:creator>IanMurray</dc:creator>
      <dc:date>2014-08-28T21:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: Use partial paths in findAndReplaceWorkspacePaths</title>
      <link>https://community.esri.com/t5/python-questions/use-partial-paths-in-findandreplaceworkspacepaths/m-p/548227#M42777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right. I'm trying to partially replace a string in the path. As I said in my original post the help guide states that it is possible to do partial strings. I need some help figuring out how to do that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Aug 2014 03:38:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/use-partial-paths-in-findandreplaceworkspacepaths/m-p/548227#M42777</guid>
      <dc:creator>MikeOnzay</dc:creator>
      <dc:date>2014-08-29T03:38:08Z</dc:date>
    </item>
  </channel>
</rss>

