<?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: Extracting Specific Text in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Extracting-Specific-Text/m-p/92245#M42073</link>
    <description>Hi GowTham, are you okay? Have you tried using Regex?&lt;BR /&gt;Can you give me more details of your problem?&lt;BR /&gt;------------------------------&lt;BR /&gt;Emerson Ferreira&lt;BR /&gt;Cons, Intelligent automation&lt;BR /&gt;Avanade Brasil&lt;BR /&gt;Recife&lt;BR /&gt;+5581988869544&lt;BR /&gt;If my answer helped you? Mark as useful!&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Tue, 09 Aug 2022 15:29:00 GMT</pubDate>
    <dc:creator>EmersonF</dc:creator>
    <dc:date>2022-08-09T15:29:00Z</dc:date>
    <item>
      <title>Extracting Specific Text</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Extracting-Specific-Text/m-p/92244#M42072</link>
      <description>Hii,&lt;BR /&gt;
&lt;H6&gt;&lt;SPAN style="color: #000000; font-size: 14pt;"&gt;&lt;SPAN style="letter-spacing: -0.02em;"&gt;How To Extract Values Before and after A Specific Text from collection which has read email body&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/H6&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Gowtham Bopaiah&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Aug 2022 15:28:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Extracting-Specific-Text/m-p/92244#M42072</guid>
      <dc:creator>GowthamBopaiah</dc:creator>
      <dc:date>2022-08-09T15:28:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extracting Specific Text</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Extracting-Specific-Text/m-p/92245#M42073</link>
      <description>Hi GowTham, are you okay? Have you tried using Regex?&lt;BR /&gt;Can you give me more details of your problem?&lt;BR /&gt;------------------------------&lt;BR /&gt;Emerson Ferreira&lt;BR /&gt;Cons, Intelligent automation&lt;BR /&gt;Avanade Brasil&lt;BR /&gt;Recife&lt;BR /&gt;+5581988869544&lt;BR /&gt;If my answer helped you? Mark as useful!&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Aug 2022 15:29:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Extracting-Specific-Text/m-p/92245#M42073</guid>
      <dc:creator>EmersonF</dc:creator>
      <dc:date>2022-08-09T15:29:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extracting Specific Text</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Extracting-Specific-Text/m-p/92246#M42074</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Take an Excel file with (Columns: Name, Employee ID, Email, Date of Joining), Fill 50 rows with random data. Using BP, filter the excel file to get those data whose date of joining is after Jan 01, 2022.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Application Excel.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Here this is the mail body which is stored in collection under body field (extracted using ms outlook vbo). I want to extract data&amp;nbsp; &amp;nbsp;after Application separately&amp;nbsp; and the data before application separately in a collection&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Gowtham Bopaiah&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 09 Aug 2022 16:40:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Extracting-Specific-Text/m-p/92246#M42074</guid>
      <dc:creator>GowthamBopaiah</dc:creator>
      <dc:date>2022-08-09T16:40:00Z</dc:date>
    </item>
    <item>
      <title>RE: Extracting Specific Text</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Extracting-Specific-Text/m-p/92247#M42075</link>
      <description>I think what you're saying is that you've got a list of emails in a collection. Whilst in that collection, you want to split the email body into two fields 1 for everything before Application, and one for everything after.&lt;BR /&gt;&lt;BR /&gt;If so, by far and away the easiest method is add a new field to your collection (called something like Body2). Then loop through the collection and use a multi-calc stage to extract the text you want;&lt;BR /&gt;the first row of the multi-calc stage would need to extract everything to the left of Application, maybe something like Left([email.body], InStr([email.body], "Application")) and safe this into email.Body2&lt;BR /&gt;the second row of the multi-calc stage would need to extract everything else and save it back into email.body. Again, various ways to do this; think I'd simply remove everything that I've always split out, something like Replace([email.body], [email.Body2], "") and save back into email.body&lt;BR /&gt;&lt;BR /&gt;Once your loop has finished, you'll end up with the Body field in the collection split into Body and Body2, with Application being the delimiter.&lt;BR /&gt;&lt;BR /&gt;I hope this makes sense.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;John Wilding&lt;BR /&gt;Robotic Architect&lt;BR /&gt;ReAssure Ltd&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 10 Aug 2022 12:45:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Extracting-Specific-Text/m-p/92247#M42075</guid>
      <dc:creator>johnwild</dc:creator>
      <dc:date>2022-08-10T12:45:00Z</dc:date>
    </item>
  </channel>
</rss>

