<?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: RegEX matching type in the application modeller in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/RegEX-matching-type-in-the-application-modeller/m-p/99590#M47128</link>
    <description>&lt;P&gt;Hi Marwa,&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;Could you please share a screenshot of your app modeller with ​Element and regex value. (Eg below)&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="36218.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/36227iFFC23EB3C562B1F2/image-size/large?v=v2&amp;amp;px=999" role="button" title="36218.png" alt="36218.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Avinash&lt;/P&gt;</description>
    <pubDate>Sun, 01 Aug 2021 21:01:56 GMT</pubDate>
    <dc:creator>AvinashRamkumar</dc:creator>
    <dc:date>2021-08-01T21:01:56Z</dc:date>
    <item>
      <title>RegEX matching type in the application modeller</title>
      <link>https://community.blueprism.com/t5/Product-Forum/RegEX-matching-type-in-the-application-modeller/m-p/99587#M47125</link>
      <description>Hi there,&amp;nbsp;&lt;BR /&gt;While spying on SAP element with the following Id attribute&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="background-color: #ffffff"&gt;/app/con[0]/ses[0]/wnd[0]/usr/subSUB0:SAPLMEGUI:001&lt;SPAN style="color: #ff0000"&gt;&lt;STRONG&gt;&lt;SPAN style="text-decoration: underline"&gt;3&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;/subSUB1:SAPLMEVIEWS:1100/subSUB2:SAPLMEVIEWS:1200/subSUB1:SAPLMEGUI:1102/tabsHEADER_DETAIL/tabpTABHDT3&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;the highlighted&amp;nbsp; "3" with red is changeable based on the different window layouts (changing between 3 , 6 or 5) so I was trying to use Reg Ex to solve this issue but it didn't work with me with using the following expression&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000"&gt;\&lt;/SPAN&gt;/app&lt;SPAN style="color: #ff0000"&gt;\&lt;/SPAN&gt;/con&lt;SPAN style="color: #ff0000"&gt;\&lt;/SPAN&gt;[0&lt;SPAN style="color: #ff0000"&gt;\&lt;/SPAN&gt;]\/ses&lt;SPAN style="color: #ff0000"&gt;\&lt;/SPAN&gt;[0&lt;SPAN style="color: #ff0000"&gt;\&lt;/SPAN&gt;]&lt;SPAN style="color: #ff0000"&gt;\&lt;/SPAN&gt;/wnd&lt;SPAN style="color: #ff0000"&gt;\&lt;/SPAN&gt;[0&lt;SPAN style="color: #ff0000"&gt;\&lt;/SPAN&gt;]&lt;SPAN style="color: #ff0000"&gt;\&lt;/SPAN&gt;/usr&lt;SPAN style="color: #ff0000"&gt;\&lt;/SPAN&gt;/subSUB0:SAPLMEGUI:001&lt;STRONG&gt;&lt;SPAN style="color: #ff0000"&gt;/d\&lt;/SPAN&gt;&lt;/STRONG&gt;/subSUB1:SAPLMEVIEWS:1100&lt;SPAN style="color: #ff0000"&gt;\&lt;/SPAN&gt;/subSUB2:SAPLMEVIEWS:1200&lt;SPAN style="color: #ff0000"&gt;\&lt;/SPAN&gt;/subSUB1:SAPLMEGUI:1102&lt;SPAN style="color: #ff0000"&gt;\&lt;/SPAN&gt;/tabsHEADER_DETAIL&lt;SPAN style="color: #ff0000"&gt;\&lt;/SPAN&gt;/tabpTABHDT3&lt;BR /&gt;&lt;BR /&gt;I replaced 3 by \d&amp;nbsp;&lt;BR /&gt;and put \ before any special character like /&amp;nbsp; or [&amp;nbsp; or ]&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;so what should I do ?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 29 Jul 2021 15:33:12 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/RegEX-matching-type-in-the-application-modeller/m-p/99587#M47125</guid>
      <dc:creator>MarwaSedik1</dc:creator>
      <dc:date>2021-07-29T15:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: RegEX matching type in the application modeller</title>
      <link>https://community.blueprism.com/t5/Product-Forum/RegEX-matching-type-in-the-application-modeller/m-p/99588#M47126</link>
      <description>&lt;P&gt;Hi Marwa,&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;I believe you can separate the components using () and [] in regex and use [0-9] for a single digit number instead.&lt;BR /&gt;&lt;BR /&gt;Please try using this instead and confirm if this works:&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;^(\/app\/con\[0\]\/ses\[0\]\/wnd\[0\]\/usr\/subSUB0:SAPLMEGUI:001)[0-9](\/subSUB1:SAPLMEVIEWS:1100\/subSUB2:SAPLMEVIEWS:1200\/subSUB1:SAPLMEGUI:1102\/tabsHEADER_DETAIL\/tabpTABHDT3)$&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;BR /&gt;Another alternate method would be to store the below value to a data item and change the number as per screen/logic. Would need to set the Attribute ID as type Dynamic.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/app/con[0]/ses[0]/wnd[0]/usr/subSUB0:SAPLMEGUI:001&lt;/SPAN&gt;&lt;SPAN style="text-decoration: underline"&gt;&lt;STRONG&gt;3&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt;/subSUB1:SAPLMEVIEWS:1100/subSUB2:SAPLMEVIEWS:1200/subSUB1:SAPLMEGUI:1102/tabsHEADER_DETAIL/tabpTABHDT3&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Please let me know if this answer was helpful.&amp;nbsp;&lt;BR /&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jul 2021 23:57:15 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/RegEX-matching-type-in-the-application-modeller/m-p/99588#M47126</guid>
      <dc:creator>AvinashRamkumar</dc:creator>
      <dc:date>2021-07-29T23:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: RegEX matching type in the application modeller</title>
      <link>https://community.blueprism.com/t5/Product-Forum/RegEX-matching-type-in-the-application-modeller/m-p/99589#M47127</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="aa429a2d-02c4-46dd-a53d-7ef496be1e0c" data-tag-text="@Avinash Ramkumar" href="https://community.blueprism.com/network/profile?UserKey=aa429a2d-02c4-46dd-a53d-7ef496be1e0c" data-itemmentionkey="5edac136-15c5-4509-92e1-b9a691b095be"&gt;@Avinash Ramkumar&lt;/A&gt;&lt;BR /&gt;Hi Avinash,&lt;BR /&gt;thanks a lot for your answer, I tried your solution but unfortunately it didn't work also.&lt;BR /&gt;and the second solution to make it dynamic isn't applicable for me, because layout conditions are too many.​</description>
      <pubDate>Sun, 01 Aug 2021 13:09:29 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/RegEX-matching-type-in-the-application-modeller/m-p/99589#M47127</guid>
      <dc:creator>MarwaSedik1</dc:creator>
      <dc:date>2021-08-01T13:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: RegEX matching type in the application modeller</title>
      <link>https://community.blueprism.com/t5/Product-Forum/RegEX-matching-type-in-the-application-modeller/m-p/99590#M47128</link>
      <description>&lt;P&gt;Hi Marwa,&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;Could you please share a screenshot of your app modeller with ​Element and regex value. (Eg below)&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="36218.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/36227iFFC23EB3C562B1F2/image-size/large?v=v2&amp;amp;px=999" role="button" title="36218.png" alt="36218.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Avinash&lt;/P&gt;</description>
      <pubDate>Sun, 01 Aug 2021 21:01:56 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/RegEX-matching-type-in-the-application-modeller/m-p/99590#M47128</guid>
      <dc:creator>AvinashRamkumar</dc:creator>
      <dc:date>2021-08-01T21:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: RegEX matching type in the application modeller</title>
      <link>https://community.blueprism.com/t5/Product-Forum/RegEX-matching-type-in-the-application-modeller/m-p/99591#M47129</link>
      <description>You have used wrong slash in your regex code . You should use \d but i see above you have used /d . Can you confirm please ?</description>
      <pubDate>Fri, 03 Sep 2021 11:00:16 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/RegEX-matching-type-in-the-application-modeller/m-p/99591#M47129</guid>
      <dc:creator>EVIPUTI</dc:creator>
      <dc:date>2021-09-03T11:00:16Z</dc:date>
    </item>
  </channel>
</rss>

