<?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: Parse if Capital Letter in Middle of Word in Alteryx Designer Desktop Discussions</title>
    <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Parse-if-Capital-Letter-in-Middle-of-Word/m-p/758069#M182767</link>
    <description>&lt;P&gt;I have a non regex solution, but I'm not convinced it is any clearer to read than the regex answers in this case&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AdamR_0-1620834760702.png" style="width: 400px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/183951i6917CB3C64A85B2B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AdamR_0-1620834760702.png" alt="AdamR_0-1620834760702.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FindString(Substring(ReplaceChar([Field1], "ABCDEFGHIJKLMNOPQRSTUVWXYZ", "*"),1),"*")+1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;gives you the index of the first capital letter not counting the first character of the string.&lt;/P&gt;</description>
    <pubDate>Wed, 12 May 2021 15:54:14 GMT</pubDate>
    <dc:creator>AdamR_AYX</dc:creator>
    <dc:date>2021-05-12T15:54:14Z</dc:date>
    <item>
      <title>Parse if Capital Letter in Middle of Word</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Parse-if-Capital-Letter-in-Middle-of-Word/m-p/758017#M182754</link>
      <description>&lt;P&gt;Hi -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to improve a customer file - I know I won't be able to solve for many cases, but I am trying to parse names if there is a capital letter within the name. Example: SteveR I want to parse into Steve (column 1) and R (column 2). Below is a snippet of my data set for reference.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kristinaheuer_0-1620830724104.png" style="width: 400px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/183935iA55D2F6A6FB8AB27/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kristinaheuer_0-1620830724104.png" alt="kristinaheuer_0-1620830724104.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 May 2021 14:47:13 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Parse-if-Capital-Letter-in-Middle-of-Word/m-p/758017#M182754</guid>
      <dc:creator>kristinaheuer</dc:creator>
      <dc:date>2021-05-12T14:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: Parse if Capital Letter in Middle of Word</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Parse-if-Capital-Letter-in-Middle-of-Word/m-p/758026#M182756</link>
      <description>&lt;P&gt;What about McMillan or HelenMcMillan?&lt;/P&gt;</description>
      <pubDate>Wed, 12 May 2021 14:53:17 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Parse-if-Capital-Letter-in-Middle-of-Word/m-p/758026#M182756</guid>
      <dc:creator>MarqueeCrew</dc:creator>
      <dc:date>2021-05-12T14:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: Parse if Capital Letter in Middle of Word</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Parse-if-Capital-Letter-in-Middle-of-Word/m-p/758029#M182758</link>
      <description>&lt;P&gt;Since this dataset is "first names" only, I am mostly concerned with grabbing the true first name and remove middle initials and middle names.&lt;/P&gt;</description>
      <pubDate>Wed, 12 May 2021 14:55:04 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Parse-if-Capital-Letter-in-Middle-of-Word/m-p/758029#M182758</guid>
      <dc:creator>kristinaheuer</dc:creator>
      <dc:date>2021-05-12T14:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: Parse if Capital Letter in Middle of Word</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Parse-if-Capital-Letter-in-Middle-of-Word/m-p/758031#M182759</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;try regex_match([column],"\w+\u+\w*",0") - that worked with my dataset.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd expect REGEX_Match([test],"[a-zA-Z]+\u+\w*",0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;would be more precise and should be better but I'm not seeing differences on my sample data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry - misread your request - those would just grab which columns have a non-leading capital letter inside the field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd do something like (\u*\w+)(\u+\w*)|(\w+) in regex tool (parse) case insensitive unchecked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 May 2021 15:51:01 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Parse-if-Capital-Letter-in-Middle-of-Word/m-p/758031#M182759</guid>
      <dc:creator>apathetichell</dc:creator>
      <dc:date>2021-05-12T15:51:01Z</dc:date>
    </item>
    <item>
      <title>Re: Parse if Capital Letter in Middle of Word</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Parse-if-Capital-Letter-in-Middle-of-Word/m-p/758041#M182763</link>
      <description>&lt;P&gt;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/240087"&gt;@kristinaheuer&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I'd use a RegEx tool set to PARSE the [firstName] with case insensitivity option UNCHECKED&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;(\u\l*)(\u*\l*)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;cheers,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;mark&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 May 2021 15:10:21 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Parse-if-Capital-Letter-in-Middle-of-Word/m-p/758041#M182763</guid>
      <dc:creator>MarqueeCrew</dc:creator>
      <dc:date>2021-05-12T15:10:21Z</dc:date>
    </item>
    <item>
      <title>Re: Parse if Capital Letter in Middle of Word</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Parse-if-Capital-Letter-in-Middle-of-Word/m-p/758069#M182767</link>
      <description>&lt;P&gt;I have a non regex solution, but I'm not convinced it is any clearer to read than the regex answers in this case&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AdamR_0-1620834760702.png" style="width: 400px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/183951i6917CB3C64A85B2B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AdamR_0-1620834760702.png" alt="AdamR_0-1620834760702.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FindString(Substring(ReplaceChar([Field1], "ABCDEFGHIJKLMNOPQRSTUVWXYZ", "*"),1),"*")+1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;gives you the index of the first capital letter not counting the first character of the string.&lt;/P&gt;</description>
      <pubDate>Wed, 12 May 2021 15:54:14 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Parse-if-Capital-Letter-in-Middle-of-Word/m-p/758069#M182767</guid>
      <dc:creator>AdamR_AYX</dc:creator>
      <dc:date>2021-05-12T15:54:14Z</dc:date>
    </item>
  </channel>
</rss>

