<?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 Attribute Assistant - InStr Operator for Parsing Street Names in State &amp; Local Government Questions</title>
    <link>https://community.esri.com/t5/state-local-government-questions/attribute-assistant-instr-operator-for-parsing/m-p/1197057#M5022</link>
    <description>&lt;P&gt;I am trying to parse values for my NENA NextGen 9-1-1 street name fields by using the VBScript InStr operator.&amp;nbsp; For example,&amp;nbsp; if the original street name field contains a &lt;A href="https://pe.usps.com/text/pub28/28apc_002.htm" target="_self"&gt;USPS Publication 28 Street Suffix&lt;/A&gt;&amp;nbsp;the expression should be able to find that prefix/suffix in the name and put it in the Pre-Type or Post-Type field, find any pre- or post-separators, and then remove the suffix and separators from the Street Name field .&amp;nbsp; Here's what I have so far, although I do not get results with the Pre-Type ValueInfo expressions I have listed.&amp;nbsp; I'm unsure if this is a problem with the InStr operator itself because a similar expression using Left does work.&lt;/P&gt;&lt;H5&gt;&lt;STRONG&gt;Original Road Name Fields and Values&lt;/STRONG&gt;&lt;/H5&gt;&lt;P&gt;ROADNAME: Old US Highway 41A&lt;/P&gt;&lt;H5&gt;&lt;STRONG&gt;NENA Road Name Fields and (Expected) Values&lt;/STRONG&gt;&lt;/H5&gt;&lt;P&gt;St_PreMod : Old&lt;/P&gt;&lt;P&gt;St_PreDir: &amp;lt;Null&amp;gt;&lt;/P&gt;&lt;P&gt;St_PreTyp: United States Highway&lt;/P&gt;&lt;P&gt;St_Name: 41&lt;/P&gt;&lt;P&gt;St_PosType: &amp;lt;Null&amp;gt;&lt;/P&gt;&lt;P&gt;St_PosDir: &amp;lt;Null&amp;gt;&lt;/P&gt;&lt;P&gt;St_PosMod: Alternate&lt;/P&gt;&lt;P&gt;I will list the following lines in the Attribute Assistant in order of their Rule Weights so they go in order:&lt;/P&gt;&lt;P&gt;&lt;U&gt;Street Name (This works)&lt;/U&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;TableName: MasterStreetName&lt;/LI&gt;&lt;LI&gt;FieldName: St_Name&lt;/LI&gt;&lt;LI&gt;ValueMethod: FIELD&lt;/LI&gt;&lt;LI&gt;ValueInfo: ROADNAME&lt;/LI&gt;&lt;LI&gt;RuleWeight: 985&lt;/LI&gt;&lt;LI&gt;Comments:&amp;nbsp;Copies the ROADNAME to NENA St_Name&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;U&gt;Street Post-Modifier (This works)&lt;/U&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;TableName: MasterStreetName&lt;/LI&gt;&lt;LI&gt;FieldName: St_PosMod&lt;/LI&gt;&lt;LI&gt;ValueMethod: EXPRESSION&lt;/LI&gt;&lt;LI&gt;ValueInfo:&amp;nbsp;IIF(InStr([St_Name], "41A"), "Alternate", [St_PosMod])&lt;/LI&gt;&lt;LI&gt;RuleWeight: 984&lt;/LI&gt;&lt;LI&gt;Comments: If the St_Name contains 41A, set the St_PosMod to Alternate&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;U&gt;Street Pre-Modifier (This works)&lt;/U&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;TableName: MasterStreetName&lt;/LI&gt;&lt;LI&gt;FieldName: St_PreMod&lt;/LI&gt;&lt;LI&gt;ValueMethod: EXPRESSION&lt;/LI&gt;&lt;LI&gt;ValueInfo: IIF(Left([St_Name], 4) = "Old ", "Old", "&amp;lt;Null&amp;gt;")&lt;/LI&gt;&lt;LI&gt;RuleWeight: 983&lt;/LI&gt;&lt;LI&gt;Comments: If the St_Name starts with Old + a space, set the St_PreMod to Old&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;U&gt;Street Pre-Type (&lt;FONT color="#FF0000"&gt;Neither method works&lt;/FONT&gt;)&lt;/U&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;TableName: MasterStreetName&lt;/LI&gt;&lt;LI&gt;FieldName: St_PreTyp&lt;/LI&gt;&lt;LI&gt;ValueMethod: EXPRESSION&lt;/LI&gt;&lt;LI&gt;ValueInfo:&lt;UL class="lia-list-style-type-circle"&gt;&lt;LI&gt;IIF(InStr([St_Name], "US Highway "), "United States Highway", "")&lt;/LI&gt;&lt;LI&gt;IIF(InStr([St_Name], "US Highway "), "United States Highway", [St_PreTyp])&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;RuleWeight: 983&lt;/LI&gt;&lt;LI&gt;Comments: If the St_Name starts with the NENA type, set the St_PreTyp to that value&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;U&gt;Street Name (This works)&lt;/U&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;TableName: MasterStreetName&lt;/LI&gt;&lt;LI&gt;FieldName: St_Name&lt;/LI&gt;&lt;LI&gt;ValueMethod: EXPRESSION&lt;/LI&gt;&lt;LI&gt;ValueInfo:&amp;nbsp;TRIM(Replace([St_Name], "Old ", ""))&lt;/LI&gt;&lt;LI&gt;RuleWeight: 982&lt;/LI&gt;&lt;LI&gt;Comments:&amp;nbsp;Replace the equivalent NENA pre- or post-type in the St_Name with nothing&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;U&gt;Street Name (This works)&lt;/U&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;TableName: MasterStreetName&lt;/LI&gt;&lt;LI&gt;FieldName: St_Name&lt;/LI&gt;&lt;LI&gt;ValueMethod: EXPRESSION&lt;/LI&gt;&lt;LI&gt;ValueInfo: TRIM(Replace([St_Name], "US Highway ", ""))&lt;/LI&gt;&lt;LI&gt;RuleWeight: 982&lt;/LI&gt;&lt;LI&gt;Comments: Replace the equivalent NENA pre- or post-type in the St_Name with nothing&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;U&gt;Street Name (This works)&lt;/U&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;TableName: MasterStreetName&lt;/LI&gt;&lt;LI&gt;FieldName: St_Name&lt;/LI&gt;&lt;LI&gt;ValueMethod: EXPRESSION&lt;/LI&gt;&lt;LI&gt;ValueInfo: TRIM(Replace([St_Name], "41A", "41"))&lt;/LI&gt;&lt;LI&gt;RuleWeight: 981&lt;/LI&gt;&lt;LI&gt;Comments: Replace 41A with 41.&lt;/LI&gt;&lt;/UL&gt;&lt;H5&gt;&lt;STRONG&gt;NENA Road Name Fields and (Resultant) Values&lt;/STRONG&gt;&lt;/H5&gt;&lt;P&gt;St_PreMod : Old&lt;/P&gt;&lt;P&gt;St_PreDir: &amp;lt;Null&amp;gt;&lt;/P&gt;&lt;P&gt;St_PreTyp: &lt;FONT color="#FF0000"&gt;&amp;lt;Null&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;St_Name: 41&lt;/P&gt;&lt;P&gt;St_PosType: &amp;lt;Null&amp;gt;&lt;/P&gt;&lt;P&gt;St_PosDir: &amp;lt;Null&amp;gt;&lt;/P&gt;&lt;P&gt;St_PosMod: Alternate&lt;/P&gt;&lt;P&gt;It looks like the InStr operator fails.&amp;nbsp; This is not the only situation I have this problem.&amp;nbsp; We have Spanish streets names that need their pre-types and separators parsed as well.&amp;nbsp; What is odd is that I have two identical expressions that have different results:&lt;/P&gt;&lt;P&gt;&lt;U&gt;Street Pre-Type (&lt;FONT color="#FF0000"&gt;Different Results&lt;/FONT&gt;)&lt;/U&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;TableName: MasterStreetName&lt;/LI&gt;&lt;LI&gt;FieldName: St_PreTyp&lt;/LI&gt;&lt;LI&gt;ValueMethod: EXPRESSION&lt;/LI&gt;&lt;LI&gt;ValueInfo:&lt;UL class="lia-list-style-type-circle"&gt;&lt;LI&gt;IIF([St_Name] = "Via Del Mar", "del", "&amp;lt;NULL&amp;gt;")&amp;nbsp; &lt;FONT color="#FF0000"&gt;Does not work&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;IIF([St_Name] = "Vista Del Rio", "del", "&amp;lt;NULL&amp;gt;")&amp;nbsp;&lt;FONT color="#339966"&gt;This works&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;RuleWeight: 983&lt;/LI&gt;&lt;LI&gt;Comments: If the St_Name starts with the NENA type, set the St_PreTyp to that value&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The InStr operator is inconsistent buts tends to not work the way I have them coded.&lt;/P&gt;&lt;P&gt;Any help is welcome.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Thu, 28 Jul 2022 19:56:57 GMT</pubDate>
    <dc:creator>JasonBalmut</dc:creator>
    <dc:date>2022-07-28T19:56:57Z</dc:date>
    <item>
      <title>Attribute Assistant - InStr Operator for Parsing Street Names</title>
      <link>https://community.esri.com/t5/state-local-government-questions/attribute-assistant-instr-operator-for-parsing/m-p/1197057#M5022</link>
      <description>&lt;P&gt;I am trying to parse values for my NENA NextGen 9-1-1 street name fields by using the VBScript InStr operator.&amp;nbsp; For example,&amp;nbsp; if the original street name field contains a &lt;A href="https://pe.usps.com/text/pub28/28apc_002.htm" target="_self"&gt;USPS Publication 28 Street Suffix&lt;/A&gt;&amp;nbsp;the expression should be able to find that prefix/suffix in the name and put it in the Pre-Type or Post-Type field, find any pre- or post-separators, and then remove the suffix and separators from the Street Name field .&amp;nbsp; Here's what I have so far, although I do not get results with the Pre-Type ValueInfo expressions I have listed.&amp;nbsp; I'm unsure if this is a problem with the InStr operator itself because a similar expression using Left does work.&lt;/P&gt;&lt;H5&gt;&lt;STRONG&gt;Original Road Name Fields and Values&lt;/STRONG&gt;&lt;/H5&gt;&lt;P&gt;ROADNAME: Old US Highway 41A&lt;/P&gt;&lt;H5&gt;&lt;STRONG&gt;NENA Road Name Fields and (Expected) Values&lt;/STRONG&gt;&lt;/H5&gt;&lt;P&gt;St_PreMod : Old&lt;/P&gt;&lt;P&gt;St_PreDir: &amp;lt;Null&amp;gt;&lt;/P&gt;&lt;P&gt;St_PreTyp: United States Highway&lt;/P&gt;&lt;P&gt;St_Name: 41&lt;/P&gt;&lt;P&gt;St_PosType: &amp;lt;Null&amp;gt;&lt;/P&gt;&lt;P&gt;St_PosDir: &amp;lt;Null&amp;gt;&lt;/P&gt;&lt;P&gt;St_PosMod: Alternate&lt;/P&gt;&lt;P&gt;I will list the following lines in the Attribute Assistant in order of their Rule Weights so they go in order:&lt;/P&gt;&lt;P&gt;&lt;U&gt;Street Name (This works)&lt;/U&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;TableName: MasterStreetName&lt;/LI&gt;&lt;LI&gt;FieldName: St_Name&lt;/LI&gt;&lt;LI&gt;ValueMethod: FIELD&lt;/LI&gt;&lt;LI&gt;ValueInfo: ROADNAME&lt;/LI&gt;&lt;LI&gt;RuleWeight: 985&lt;/LI&gt;&lt;LI&gt;Comments:&amp;nbsp;Copies the ROADNAME to NENA St_Name&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;U&gt;Street Post-Modifier (This works)&lt;/U&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;TableName: MasterStreetName&lt;/LI&gt;&lt;LI&gt;FieldName: St_PosMod&lt;/LI&gt;&lt;LI&gt;ValueMethod: EXPRESSION&lt;/LI&gt;&lt;LI&gt;ValueInfo:&amp;nbsp;IIF(InStr([St_Name], "41A"), "Alternate", [St_PosMod])&lt;/LI&gt;&lt;LI&gt;RuleWeight: 984&lt;/LI&gt;&lt;LI&gt;Comments: If the St_Name contains 41A, set the St_PosMod to Alternate&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;U&gt;Street Pre-Modifier (This works)&lt;/U&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;TableName: MasterStreetName&lt;/LI&gt;&lt;LI&gt;FieldName: St_PreMod&lt;/LI&gt;&lt;LI&gt;ValueMethod: EXPRESSION&lt;/LI&gt;&lt;LI&gt;ValueInfo: IIF(Left([St_Name], 4) = "Old ", "Old", "&amp;lt;Null&amp;gt;")&lt;/LI&gt;&lt;LI&gt;RuleWeight: 983&lt;/LI&gt;&lt;LI&gt;Comments: If the St_Name starts with Old + a space, set the St_PreMod to Old&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;U&gt;Street Pre-Type (&lt;FONT color="#FF0000"&gt;Neither method works&lt;/FONT&gt;)&lt;/U&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;TableName: MasterStreetName&lt;/LI&gt;&lt;LI&gt;FieldName: St_PreTyp&lt;/LI&gt;&lt;LI&gt;ValueMethod: EXPRESSION&lt;/LI&gt;&lt;LI&gt;ValueInfo:&lt;UL class="lia-list-style-type-circle"&gt;&lt;LI&gt;IIF(InStr([St_Name], "US Highway "), "United States Highway", "")&lt;/LI&gt;&lt;LI&gt;IIF(InStr([St_Name], "US Highway "), "United States Highway", [St_PreTyp])&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;RuleWeight: 983&lt;/LI&gt;&lt;LI&gt;Comments: If the St_Name starts with the NENA type, set the St_PreTyp to that value&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;U&gt;Street Name (This works)&lt;/U&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;TableName: MasterStreetName&lt;/LI&gt;&lt;LI&gt;FieldName: St_Name&lt;/LI&gt;&lt;LI&gt;ValueMethod: EXPRESSION&lt;/LI&gt;&lt;LI&gt;ValueInfo:&amp;nbsp;TRIM(Replace([St_Name], "Old ", ""))&lt;/LI&gt;&lt;LI&gt;RuleWeight: 982&lt;/LI&gt;&lt;LI&gt;Comments:&amp;nbsp;Replace the equivalent NENA pre- or post-type in the St_Name with nothing&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;U&gt;Street Name (This works)&lt;/U&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;TableName: MasterStreetName&lt;/LI&gt;&lt;LI&gt;FieldName: St_Name&lt;/LI&gt;&lt;LI&gt;ValueMethod: EXPRESSION&lt;/LI&gt;&lt;LI&gt;ValueInfo: TRIM(Replace([St_Name], "US Highway ", ""))&lt;/LI&gt;&lt;LI&gt;RuleWeight: 982&lt;/LI&gt;&lt;LI&gt;Comments: Replace the equivalent NENA pre- or post-type in the St_Name with nothing&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;U&gt;Street Name (This works)&lt;/U&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;TableName: MasterStreetName&lt;/LI&gt;&lt;LI&gt;FieldName: St_Name&lt;/LI&gt;&lt;LI&gt;ValueMethod: EXPRESSION&lt;/LI&gt;&lt;LI&gt;ValueInfo: TRIM(Replace([St_Name], "41A", "41"))&lt;/LI&gt;&lt;LI&gt;RuleWeight: 981&lt;/LI&gt;&lt;LI&gt;Comments: Replace 41A with 41.&lt;/LI&gt;&lt;/UL&gt;&lt;H5&gt;&lt;STRONG&gt;NENA Road Name Fields and (Resultant) Values&lt;/STRONG&gt;&lt;/H5&gt;&lt;P&gt;St_PreMod : Old&lt;/P&gt;&lt;P&gt;St_PreDir: &amp;lt;Null&amp;gt;&lt;/P&gt;&lt;P&gt;St_PreTyp: &lt;FONT color="#FF0000"&gt;&amp;lt;Null&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;St_Name: 41&lt;/P&gt;&lt;P&gt;St_PosType: &amp;lt;Null&amp;gt;&lt;/P&gt;&lt;P&gt;St_PosDir: &amp;lt;Null&amp;gt;&lt;/P&gt;&lt;P&gt;St_PosMod: Alternate&lt;/P&gt;&lt;P&gt;It looks like the InStr operator fails.&amp;nbsp; This is not the only situation I have this problem.&amp;nbsp; We have Spanish streets names that need their pre-types and separators parsed as well.&amp;nbsp; What is odd is that I have two identical expressions that have different results:&lt;/P&gt;&lt;P&gt;&lt;U&gt;Street Pre-Type (&lt;FONT color="#FF0000"&gt;Different Results&lt;/FONT&gt;)&lt;/U&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;TableName: MasterStreetName&lt;/LI&gt;&lt;LI&gt;FieldName: St_PreTyp&lt;/LI&gt;&lt;LI&gt;ValueMethod: EXPRESSION&lt;/LI&gt;&lt;LI&gt;ValueInfo:&lt;UL class="lia-list-style-type-circle"&gt;&lt;LI&gt;IIF([St_Name] = "Via Del Mar", "del", "&amp;lt;NULL&amp;gt;")&amp;nbsp; &lt;FONT color="#FF0000"&gt;Does not work&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;IIF([St_Name] = "Vista Del Rio", "del", "&amp;lt;NULL&amp;gt;")&amp;nbsp;&lt;FONT color="#339966"&gt;This works&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;RuleWeight: 983&lt;/LI&gt;&lt;LI&gt;Comments: If the St_Name starts with the NENA type, set the St_PreTyp to that value&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The InStr operator is inconsistent buts tends to not work the way I have them coded.&lt;/P&gt;&lt;P&gt;Any help is welcome.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2022 19:56:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/attribute-assistant-instr-operator-for-parsing/m-p/1197057#M5022</guid>
      <dc:creator>JasonBalmut</dc:creator>
      <dc:date>2022-07-28T19:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Assistant - InStr Operator for Parsing Street Names</title>
      <link>https://community.esri.com/t5/state-local-government-questions/attribute-assistant-instr-operator-for-parsing/m-p/1197222#M5024</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can't specifically help you with the IIF issue, although I thought it was single quotes not double. But I might refer you to the NENA document for parsing the CFS address&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;NENA Next Generation 9-1-1 (NG9-1-1) United States&lt;BR /&gt;Civic Location Data Exchange Format (CLDXF) Standard&lt;BR /&gt;NENA-STA-004.1.1-2014, March 23, 2014&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;for a lot of good rules on address parsing and the related APCO&amp;nbsp;cfsinfo.pdf&amp;nbsp; document as well. I had a link to the latter it but it seems broken ..&lt;/P&gt;&lt;P&gt;Also, you should look at this community post -&amp;nbsp;&lt;A href="https://community.esri.com/t5/arcgis-online-questions/multiple-iif-statements-in-arcade-expression/td-p/485731" target="_blank"&gt;https://community.esri.com/t5/arcgis-online-questions/multiple-iif-statements-in-arcade-expression/td-p/485731&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps --&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2022 02:18:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/attribute-assistant-instr-operator-for-parsing/m-p/1197222#M5024</guid>
      <dc:creator>JeffSilberberg</dc:creator>
      <dc:date>2022-07-29T02:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Assistant - InStr Operator for Parsing Street Names</title>
      <link>https://community.esri.com/t5/state-local-government-questions/attribute-assistant-instr-operator-for-parsing/m-p/1197301#M5025</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/140376"&gt;@JeffSilberberg&lt;/a&gt;, our organization is still using ArcMap with the Attribute Assistant add-in until we can convert to ArcGIS Pro.&amp;nbsp; Until then, we are stuck with VBScript and unable to use Arcade.&amp;nbsp; I'm familiar with the NENA best practices and just need help with the InStr operator for this function.&amp;nbsp; Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2022 11:47:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/attribute-assistant-instr-operator-for-parsing/m-p/1197301#M5025</guid>
      <dc:creator>JasonBalmut</dc:creator>
      <dc:date>2022-07-29T11:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Assistant - InStr Operator for Parsing Street Names</title>
      <link>https://community.esri.com/t5/state-local-government-questions/attribute-assistant-instr-operator-for-parsing/m-p/1197647#M5026</link>
      <description>&lt;P&gt;Okay,&amp;nbsp; In your&amp;nbsp;&lt;U&gt;Street Pre-Type (&lt;FONT color="#FF0000"&gt;Neither method works&lt;/FONT&gt;)&lt;/U&gt;&amp;nbsp;What doesn't work ..&amp;nbsp; I tried it in a Fiddle and it appeared to work for me..&amp;nbsp; &amp;nbsp;Returning the True value in both IIF statements based on the&amp;nbsp;&lt;SPAN&gt;ROADNAME: Old US Highway 41A value.&amp;nbsp; &amp;nbsp;In your second issue&amp;nbsp;&lt;U&gt;Street Pre-Type (&lt;FONT color="#FF0000"&gt;Different Results&lt;/FONT&gt;)&lt;/U&gt;&amp;nbsp;there is no inStr() not sure what does not work.&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Most these should use the third&amp;nbsp;value of the inStr(String, Find, Compare)&amp;nbsp; Where the default f the third value is 0 (Case Sensitive) verses 1 (Case Insensitive).&amp;nbsp; Since I never worked in ArcMAP that's about all I have to offer.&amp;nbsp; Hope this helps more.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2022 22:23:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/state-local-government-questions/attribute-assistant-instr-operator-for-parsing/m-p/1197647#M5026</guid>
      <dc:creator>JeffSilberberg</dc:creator>
      <dc:date>2022-07-29T22:23:53Z</dc:date>
    </item>
  </channel>
</rss>

