<?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: How to convert array of strings into multible data sources in Community Chat</title>
    <link>https://systematic.workato.com/t5/community-chat/how-to-convert-array-of-strings-into-multible-data-sources/m-p/6397#M169</link>
    <description>&lt;P&gt;I am assuming that your output is coming as -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;{
	"message": [
		"sample@email.com",
		"sample2@email.com",
		"sample3@email.com"
	]
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;The result you are expecting is -&amp;nbsp;to map to your target field which accepts the multiple email address in the string format.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;{
	"message": "sample@email.com, sample2@email.com, sample3@email.com"
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for this to achieve:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2024-04-12 163304.png" style="width: 999px;"&gt;&lt;img src="https://systematic.workato.com/t5/image/serverpage/image-id/1122i8EF158A04A6A6BDF/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="Screenshot 2024-04-12 163304.png" alt="Screenshot 2024-04-12 163304.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;LI-CODE lang="ruby"&gt;=.to_s.gsub(/[\[\]\"]/, "[" =&amp;gt; "", "]" =&amp;gt; "", "\"" =&amp;gt; "")&lt;/LI-CODE&gt;&lt;P&gt;by using the above formula you can easily convert the array of emails/strings into a single string with the comma separated values and map to the target step.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this doesn't solve you problem let me know with the actual schema and the result schema that you are expecting.&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Prajwal P&lt;/P&gt;</description>
    <pubDate>Fri, 12 Apr 2024 11:07:16 GMT</pubDate>
    <dc:creator>Prajwal</dc:creator>
    <dc:date>2024-04-12T11:07:16Z</dc:date>
    <item>
      <title>How to convert array of strings into multible data sources</title>
      <link>https://systematic.workato.com/t5/community-chat/how-to-convert-array-of-strings-into-multible-data-sources/m-p/6032#M149</link>
      <description>&lt;P&gt;Hi, I would believe my questions is pretty simple. But I just can't figure out how to do this. In my payload schema, I retrieve an array of strings. I call it mail_of_signers. So I have an array that contains a lot of email adresses.&lt;BR /&gt;I want to add these email adresses individually as a string format, into a field which only accepts one or more strings.&lt;/P&gt;&lt;P&gt;Hope it makes sense, if not I can elaborate.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jan 2024 19:46:49 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/community-chat/how-to-convert-array-of-strings-into-multible-data-sources/m-p/6032#M149</guid>
      <dc:creator>MaxLaks</dc:creator>
      <dc:date>2024-01-24T19:46:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert array of strings into multible data sources</title>
      <link>https://systematic.workato.com/t5/community-chat/how-to-convert-array-of-strings-into-multible-data-sources/m-p/6394#M168</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://systematic.workato.com/t5/user/viewprofilepage/user-id/9944"&gt;@MaxLaks&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, we can do that, if you could able to share the example schema that would be help full. So that I can able give a proper solution for this.&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Prajwal Prasanna&lt;/P&gt;</description>
      <pubDate>Fri, 12 Apr 2024 10:38:37 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/community-chat/how-to-convert-array-of-strings-into-multible-data-sources/m-p/6394#M168</guid>
      <dc:creator>Prajwal</dc:creator>
      <dc:date>2024-04-12T10:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert array of strings into multible data sources</title>
      <link>https://systematic.workato.com/t5/community-chat/how-to-convert-array-of-strings-into-multible-data-sources/m-p/6397#M169</link>
      <description>&lt;P&gt;I am assuming that your output is coming as -&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;{
	"message": [
		"sample@email.com",
		"sample2@email.com",
		"sample3@email.com"
	]
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;The result you are expecting is -&amp;nbsp;to map to your target field which accepts the multiple email address in the string format.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;{
	"message": "sample@email.com, sample2@email.com, sample3@email.com"
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for this to achieve:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2024-04-12 163304.png" style="width: 999px;"&gt;&lt;img src="https://systematic.workato.com/t5/image/serverpage/image-id/1122i8EF158A04A6A6BDF/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="Screenshot 2024-04-12 163304.png" alt="Screenshot 2024-04-12 163304.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;LI-CODE lang="ruby"&gt;=.to_s.gsub(/[\[\]\"]/, "[" =&amp;gt; "", "]" =&amp;gt; "", "\"" =&amp;gt; "")&lt;/LI-CODE&gt;&lt;P&gt;by using the above formula you can easily convert the array of emails/strings into a single string with the comma separated values and map to the target step.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this doesn't solve you problem let me know with the actual schema and the result schema that you are expecting.&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Prajwal P&lt;/P&gt;</description>
      <pubDate>Fri, 12 Apr 2024 11:07:16 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/community-chat/how-to-convert-array-of-strings-into-multible-data-sources/m-p/6397#M169</guid>
      <dc:creator>Prajwal</dc:creator>
      <dc:date>2024-04-12T11:07:16Z</dc:date>
    </item>
  </channel>
</rss>

