<?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: Select by attribute based on whether one field is a substring of another field in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/select-by-attribute-based-on-whether-one-field-is/m-p/135485#M10617</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just to be different, I used numpy and pandas to get the result.&amp;nbsp; Basically just converts the input FC into a pandas DataFrame, apply filter, create output table, join back to original FC and apply final SelectByAttributes.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
import pandas as pd
import numpy as np
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
dflist=[]
arrOut = r'in_memory\_arrOut'
items = ['very','longer','sweater','really']
fc = r'&amp;lt;input feature class&amp;gt;'
fl = arcpy.MakeFeatureLayer_management(fc, "inputFC")
flds = [f.name for f in arcpy.ListFields(fc)]
tarr = arcpy.da.TableToNumPyArray(fc,flds)
df = pd.DataFrame(tarr,columns=['OID','Full_Text','flag'])
df['flag']='x'

for item in items:
&amp;nbsp;&amp;nbsp;&amp;nbsp; df_result = df[df['Full_Text'].str.contains(item)]
&amp;nbsp;&amp;nbsp;&amp;nbsp; dflist.append(df_result)

listofdfs = pd.concat(dflist)&amp;nbsp;&amp;nbsp;&amp;nbsp; 
dfar = listofdfs.to_records()
tarrout = np.array(dfar, np.dtype([('ID', np.int32),('Full_Text', '|S255'),('flag', '|S1')]))
arcpy.da.NumPyArrayToTable(tarrout, r"in_memory\numpytab2")

arcpy.AddJoin_management(fl, "OBJECTID", r"in_memory\numpytab2", "OID", "KEEP_COMMON")
exp = """ "flag" = 'x' """
arcpy.SelectLayerByAttribute_management(fl, "NEW_SELECTION", exp)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 07:33:30 GMT</pubDate>
    <dc:creator>JamesCrandall</dc:creator>
    <dc:date>2021-12-11T07:33:30Z</dc:date>
    <item>
      <title>Select by attribute based on whether one field is a substring of another field</title>
      <link>https://community.esri.com/t5/python-questions/select-by-attribute-based-on-whether-one-field-is/m-p/135481#M10613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have been looking for a way to use the SelectLayerByAttribute function to select records in Python based on whether or not one field is a substring of another field.&amp;nbsp; For example, in the table view below, I would want to select the first three records because each of their sub_text strings is contained within the full_text string, or use a NOT version to select the fourth record.&amp;nbsp; I had tried using the LIKE statement (Sub_Text LIKE Full_Text) but functionally it works the same as an = statement and thus selects nothing.&amp;nbsp; So far I've found out how to compare a field to a fixed string within the query, or to see if a string is located at various character positions within the string, but that doesn't really help.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(198, 198, 198); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;&lt;STRONG&gt;OID&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;&lt;STRONG&gt;Full_Text&lt;BR /&gt;&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;&lt;STRONG&gt;Sub_Text&lt;BR /&gt;&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 6px;"&gt;1&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;thisisaverylongstring&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;very&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 6px;"&gt;2&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;thisistrulyanevenlongerstring&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;longer&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 6px;"&gt;3&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;thisstringissolongyoucouldmakeasweateroutofit&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;sweater&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 6px;"&gt;4&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;idontwantanysubtextinthisstring&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;really&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2016 21:00:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/select-by-attribute-based-on-whether-one-field-is/m-p/135481#M10613</guid>
      <dc:creator>StephenRhone</dc:creator>
      <dc:date>2016-06-13T21:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: Select by attribute based on whether one field is a substring of another field</title>
      <link>https://community.esri.com/t5/python-questions/select-by-attribute-based-on-whether-one-field-is/m-p/135482#M10614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;see &lt;A href="http://desktop.arcgis.com/en/arcmap/latest/map/working-with-layers/building-a-query-expression.htm" title="http://desktop.arcgis.com/en/arcmap/latest/map/working-with-layers/building-a-query-expression.htm"&gt;Building a query expression—Help | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;P&gt;you need to use a wildcard with your selection... see the searching strings section... and its example&lt;/P&gt;&lt;P&gt;STATE_NAME LIKE 'Miss%'&amp;nbsp;&amp;nbsp;&amp;nbsp; for anything after Miss...&lt;/P&gt;&lt;P&gt;STATE_NAME LIKE '%e%'&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; any state with an e in it&lt;/P&gt;&lt;P&gt;STATE_NAME LIKE '%a'&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; any state ending in an a&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Jun 2016 23:32:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/select-by-attribute-based-on-whether-one-field-is/m-p/135482#M10614</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-06-13T23:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: Select by attribute based on whether one field is a substring of another field</title>
      <link>https://community.esri.com/t5/python-questions/select-by-attribute-based-on-whether-one-field-is/m-p/135483#M10615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Started this earlier, but then realized you wanted the SelectLayerByAttribute part of it...but I'll add this to Dan's comment.&amp;nbsp; Just for a simple way to loop thru the two fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is one way to check, if you get you info into an array.&amp;nbsp; I'll let the array guru's add there touch to this.&amp;nbsp; And if you have a lot of data, you most likely would want to use arcpy.da.UpdateCursor or similar, especially if you are wanting to update another field.&amp;nbsp; but this is a simple example, with an add records with a word "is" that IS in all of them...except my added record.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;recs = [[1,&amp;nbsp;&amp;nbsp;&amp;nbsp; "thisisaverylongstring",&amp;nbsp;&amp;nbsp;&amp;nbsp; "very"], [2,&amp;nbsp;&amp;nbsp;&amp;nbsp; "thisistrulyanevenlongerstring",&amp;nbsp;&amp;nbsp;&amp;nbsp; "longer"], [3,&amp;nbsp;&amp;nbsp;&amp;nbsp; "thisstringissolongyoucouldmakeasweateroutofit",&amp;nbsp;&amp;nbsp;&amp;nbsp; "sweater"], [4,&amp;nbsp;&amp;nbsp;&amp;nbsp; "idontwantanysubtextinthisstring",&amp;nbsp;&amp;nbsp;&amp;nbsp; "really"], [5, "whatever", "is"]]

#import arcpy
fullArray = []
subArray = []
for rec in recs:
&amp;nbsp;&amp;nbsp;&amp;nbsp; fullArray.append(rec[1])
&amp;nbsp;&amp;nbsp;&amp;nbsp; subArray.append(rec[2])
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
print("fullArray: {0}".format(fullArray))
print("subArray: {0}".format(subArray))
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
for subText in subArray:
&amp;nbsp;&amp;nbsp;&amp;nbsp; for fullText in fullArray:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if subText in fullText:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print("{0} is within {1}".format(subText, fullText))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print("{0} is NOT within {1}".format(subText, fullText))&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The output will be&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;fullArray: ['thisisaverylongstring', 'thisistrulyanevenlongerstring', 'thisstringissolongyoucouldmakeasweateroutofit', 'idontwantanysubtextinthisstring', 'whatever']&lt;/P&gt;&lt;P&gt;subArray: ['very', 'longer', 'sweater', 'really', 'is']&lt;/P&gt;&lt;P&gt;very is within thisisaverylongstring&lt;/P&gt;&lt;P&gt;very is NOT within thisistrulyanevenlongerstring&lt;/P&gt;&lt;P&gt;very is NOT within thisstringissolongyoucouldmakeasweateroutofit&lt;/P&gt;&lt;P&gt;very is NOT within idontwantanysubtextinthisstring&lt;/P&gt;&lt;P&gt;very is NOT within whatever&lt;/P&gt;&lt;P&gt;longer is NOT within thisisaverylongstring&lt;/P&gt;&lt;P&gt;longer is within thisistrulyanevenlongerstring&lt;/P&gt;&lt;P&gt;longer is NOT within thisstringissolongyoucouldmakeasweateroutofit&lt;/P&gt;&lt;P&gt;longer is NOT within idontwantanysubtextinthisstring&lt;/P&gt;&lt;P&gt;longer is NOT within whatever&lt;/P&gt;&lt;P&gt;sweater is NOT within thisisaverylongstring&lt;/P&gt;&lt;P&gt;sweater is NOT within thisistrulyanevenlongerstring&lt;/P&gt;&lt;P&gt;sweater is within thisstringissolongyoucouldmakeasweateroutofit&lt;/P&gt;&lt;P&gt;sweater is NOT within idontwantanysubtextinthisstring&lt;/P&gt;&lt;P&gt;sweater is NOT within whatever&lt;/P&gt;&lt;P&gt;really is NOT within thisisaverylongstring&lt;/P&gt;&lt;P&gt;really is NOT within thisistrulyanevenlongerstring&lt;/P&gt;&lt;P&gt;really is NOT within thisstringissolongyoucouldmakeasweateroutofit&lt;/P&gt;&lt;P&gt;really is NOT within idontwantanysubtextinthisstring&lt;/P&gt;&lt;P&gt;really is NOT within whatever&lt;/P&gt;&lt;P&gt;is is within thisisaverylongstring&lt;/P&gt;&lt;P&gt;is is within thisistrulyanevenlongerstring&lt;/P&gt;&lt;P&gt;is is within thisstringissolongyoucouldmakeasweateroutofit&lt;/P&gt;&lt;P&gt;is is within idontwantanysubtextinthisstring&lt;/P&gt;&lt;P&gt;is is NOT within whatever&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:33:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/select-by-attribute-based-on-whether-one-field-is/m-p/135483#M10615</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2021-12-11T07:33:25Z</dc:date>
    </item>
    <item>
      <title>Re: Select by attribute based on whether one field is a substring of another field</title>
      <link>https://community.esri.com/t5/python-questions/select-by-attribute-based-on-whether-one-field-is/m-p/135484#M10616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since my last response [edit :was so long], I'm separating this.&amp;nbsp; I decided to play around with this, and first (build off&amp;nbsp; my script above) was grabbing ANY record that had ANY of the Sub_Text words within Full_Text, but then I realized that is probably not what you wanted.&amp;nbsp; So, here is a sample to run thru the records, and build an equation on the fly.&amp;nbsp; Since it is a table, I'm creating another table, but you could use it in the SelectByAttributes if it is a featureclass.&amp;nbsp; I'll attach my test table just so you can see what I did (you'll have to change the input path)&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
import os
inTable = r'C:\__temp\test.gdb\testFld1Fld2'
fields = ('OBJECTID', 'Full_Text', 'Sub_Text')
npArray = arcpy.da.TableToNumPyArray(inTable, fields)
ws = arcpy.env.workspace = os.path.dirname(inTable)
arcpy.env.overwriteOutput = True

qcnt = 0
myQuery = ""

for aRow in npArray:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print(aRow)
&amp;nbsp;&amp;nbsp;&amp;nbsp; if aRow[2] in aRow[1]:&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print("OBJECTID:{0}&amp;nbsp; {2} IS IN {1}".format(aRow[0], aRow[1], aRow[2]))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; quickTest = ("OBJECTID = {0}".format(aRow[0]))&amp;nbsp;&amp;nbsp;&amp;nbsp; # will eliminate duplicates
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if qcnt == 0:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myQuery = ("OBJECTID = {0} OR ".format(aRow[0]))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; qcnt += 1
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; elif quickTest not in myQuery:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myQuery = ("{0} OBJECTID = {1} OR ".format(myQuery, aRow[0]))

myQuery = myQuery.rstrip(" OR ")
print myQuery

arcpy.TableToTable_conversion(inTable, ws, "outtest", myQuery, "#", "")

del npArray&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sure others could improve on this, but hopefully this can get you started.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit 2: forgot to attach the test gdb/&lt;/P&gt;&lt;P&gt;edit 3: fyi, the length of the query, in the way I have it above will hit the max length fairly fast.&amp;nbsp; Since that really isn't practical for large files, other ways to do it include having the first do a select as "NEW SELECTION" and then add to the seletion each round...but this will most likely be slow.&amp;nbsp; You could modify it to build a query of x number/length, then add to the selection, and repeat.&amp;nbsp; or you could write the selected record to a temp file, have that collect everything, then create your new feature layer at the end.&amp;nbsp; That may be you best bet.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:33:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/select-by-attribute-based-on-whether-one-field-is/m-p/135484#M10616</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2021-12-11T07:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: Select by attribute based on whether one field is a substring of another field</title>
      <link>https://community.esri.com/t5/python-questions/select-by-attribute-based-on-whether-one-field-is/m-p/135485#M10617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just to be different, I used numpy and pandas to get the result.&amp;nbsp; Basically just converts the input FC into a pandas DataFrame, apply filter, create output table, join back to original FC and apply final SelectByAttributes.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
import pandas as pd
import numpy as np
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
dflist=[]
arrOut = r'in_memory\_arrOut'
items = ['very','longer','sweater','really']
fc = r'&amp;lt;input feature class&amp;gt;'
fl = arcpy.MakeFeatureLayer_management(fc, "inputFC")
flds = [f.name for f in arcpy.ListFields(fc)]
tarr = arcpy.da.TableToNumPyArray(fc,flds)
df = pd.DataFrame(tarr,columns=['OID','Full_Text','flag'])
df['flag']='x'

for item in items:
&amp;nbsp;&amp;nbsp;&amp;nbsp; df_result = df[df['Full_Text'].str.contains(item)]
&amp;nbsp;&amp;nbsp;&amp;nbsp; dflist.append(df_result)

listofdfs = pd.concat(dflist)&amp;nbsp;&amp;nbsp;&amp;nbsp; 
dfar = listofdfs.to_records()
tarrout = np.array(dfar, np.dtype([('ID', np.int32),('Full_Text', '|S255'),('flag', '|S1')]))
arcpy.da.NumPyArrayToTable(tarrout, r"in_memory\numpytab2")

arcpy.AddJoin_management(fl, "OBJECTID", r"in_memory\numpytab2", "OID", "KEEP_COMMON")
exp = """ "flag" = 'x' """
arcpy.SelectLayerByAttribute_management(fl, "NEW_SELECTION", exp)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 07:33:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/select-by-attribute-based-on-whether-one-field-is/m-p/135485#M10617</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2021-12-11T07:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: Select by attribute based on whether one field is a substring of another field</title>
      <link>https://community.esri.com/t5/python-questions/select-by-attribute-based-on-whether-one-field-is/m-p/135486#M10618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="image.png" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/207730_image.png" style="height: auto;" /&gt; and your numpy badge for that&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jun 2016 19:24:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/select-by-attribute-based-on-whether-one-field-is/m-p/135486#M10618</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-06-14T19:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: Select by attribute based on whether one field is a substring of another field</title>
      <link>https://community.esri.com/t5/python-questions/select-by-attribute-based-on-whether-one-field-is/m-p/1121892#M63115</link>
      <description>&lt;P&gt;Not sure if anyone is still needs help with this, but here is a more up-to-date solution:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Example - select features for which Field1='Forest' and Field2='Pine Forest'.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The final expression will be:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"Field2" LIKE CONCAT(CONCAT('%',SUBSTRING("Field1",1,CHAR_LENGTH("Field1"))),'%')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.esri.com/en/technical-article/000007577" target="_blank"&gt;https://support.esri.com/en/technical-article/000007577&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Dec 2021 20:43:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/select-by-attribute-based-on-whether-one-field-is/m-p/1121892#M63115</guid>
      <dc:creator>AngelBarnett</dc:creator>
      <dc:date>2021-12-01T20:43:00Z</dc:date>
    </item>
  </channel>
</rss>

