<?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: Want to find &amp;quot;+&amp;quot; value from a variable in Workato Pros Discussion Board</title>
    <link>https://systematic.workato.com/t5/workato-pros-discussion-board/want-to-find-quot-quot-value-from-a-variable/m-p/6374#M2799</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/9804"&gt;@MurugarajSa&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;You can use below formulae for the match&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;STRONG&gt;ISA07:&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;Receiver&lt;/FONT&gt;.match?(/[\/+]/)? "12" : "ISA07"&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;ISA08:&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;Receiver&lt;/FONT&gt;.match?(/[\/+]/)? "0975677" : "ISA08"&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 09 Apr 2024 10:31:10 GMT</pubDate>
    <dc:creator>shivakumara</dc:creator>
    <dc:date>2024-04-09T10:31:10Z</dc:date>
    <item>
      <title>Want to find "+" value from a variable</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/want-to-find-quot-quot-value-from-a-variable/m-p/6369#M2796</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have 3 variables - Receiver, ISA07, ISA08&lt;/P&gt;&lt;P&gt;I will have to update ISA07 and ISA08 variables based on the value of Receiver.&lt;/P&gt;&lt;P&gt;if Receiver has value as 12+0975677. I need to validate whether receiver variable has "+" value. If so I will update ISA07=12 and ISA08=0975677. How to achieve it in formula mode.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2024 13:14:54 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/want-to-find-quot-quot-value-from-a-variable/m-p/6369#M2796</guid>
      <dc:creator>MurugarajSa</dc:creator>
      <dc:date>2024-04-08T13:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: Want to find "+" value from a variable</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/want-to-find-quot-quot-value-from-a-variable/m-p/6371#M2797</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;For ISA07:&lt;/P&gt;&lt;LI-CODE lang="ruby"&gt;Receiver.include?("+") ? "12" : ISA07&lt;/LI-CODE&gt;&lt;P&gt;For ISA08:&lt;/P&gt;&lt;LI-CODE lang="ruby"&gt;Receiver.include?("+") ? "0975677" : ISA08&lt;/LI-CODE&gt;&lt;P&gt;If Receiver does not include "+" the variables will remain the same.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 02:33:02 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/want-to-find-quot-quot-value-from-a-variable/m-p/6371#M2797</guid>
      <dc:creator>gary1</dc:creator>
      <dc:date>2024-04-09T02:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: Want to find "+" value from a variable</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/want-to-find-quot-quot-value-from-a-variable/m-p/6373#M2798</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/1188"&gt;@gary1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It worked perfectly. But&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;One concern is Receiver variable might have value "+" or "/". (E.g. 12+0975677,&amp;nbsp; 12/0975677).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ISA07 should be 12 and ISA08 should be&amp;nbsp;0975677.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Can you please suggest me how I can achieve this?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks in advance.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 10:04:15 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/want-to-find-quot-quot-value-from-a-variable/m-p/6373#M2798</guid>
      <dc:creator>MurugarajSa</dc:creator>
      <dc:date>2024-04-09T10:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: Want to find "+" value from a variable</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/want-to-find-quot-quot-value-from-a-variable/m-p/6374#M2799</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/9804"&gt;@MurugarajSa&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;You can use below formulae for the match&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;STRONG&gt;ISA07:&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;Receiver&lt;/FONT&gt;.match?(/[\/+]/)? "12" : "ISA07"&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;ISA08:&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;Receiver&lt;/FONT&gt;.match?(/[\/+]/)? "0975677" : "ISA08"&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 10:31:10 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/want-to-find-quot-quot-value-from-a-variable/m-p/6374#M2799</guid>
      <dc:creator>shivakumara</dc:creator>
      <dc:date>2024-04-09T10:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: Want to find "+" value from a variable</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/want-to-find-quot-quot-value-from-a-variable/m-p/6378#M2801</link>
      <description>&lt;P&gt;Will the Receiver value ALWAYS be "12+&lt;SPAN&gt;0975677" ? Or can the "12" and the "0975677" change?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;For example, if you received "99+7777777", you would expect ISA07 = "99" and ISA08 = "7777777" ?&lt;/P&gt;&lt;P&gt;If this is the case, then you need to do this a bit differently:&lt;/P&gt;&lt;P&gt;ISA07:&lt;/P&gt;&lt;LI-CODE lang="ruby"&gt;receiver.match?(/[\/+]/) ? receiver.split(/[\/+]/)[0] : isa07&lt;/LI-CODE&gt;&lt;P&gt;ISA08:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="ruby"&gt;receiver.match?(/[\/+]/) ? receiver.split(/[\/+]/)[1] : isa08&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Credit to&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/8685"&gt;@shivakumara&lt;/a&gt;&amp;nbsp; for the regex&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 16:35:10 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/want-to-find-quot-quot-value-from-a-variable/m-p/6378#M2801</guid>
      <dc:creator>gary1</dc:creator>
      <dc:date>2024-04-09T16:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: Want to find "+" value from a variable</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/want-to-find-quot-quot-value-from-a-variable/m-p/6380#M2803</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/1188"&gt;@gary1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It worked perfectly.&lt;/P&gt;&lt;P&gt;Thank you so much for your valuable time.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 17:57:32 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/want-to-find-quot-quot-value-from-a-variable/m-p/6380#M2803</guid>
      <dc:creator>MurugarajSa</dc:creator>
      <dc:date>2024-04-09T17:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Want to find "+" value from a variable</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/want-to-find-quot-quot-value-from-a-variable/m-p/6381#M2804</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/8685"&gt;@shivakumara&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 18:04:02 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/want-to-find-quot-quot-value-from-a-variable/m-p/6381#M2804</guid>
      <dc:creator>MurugarajSa</dc:creator>
      <dc:date>2024-04-09T18:04:02Z</dc:date>
    </item>
  </channel>
</rss>

