<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>How to remove (; ) in the end of array in appian</title><link>https://community.appian.com/discussions/f/general/24368/how-to-remove-in-the-end-of-array-in-appian</link><description>Hello everyone, for a few days I have a complication, I don&amp;#39;t know how to remove the (; ) after each of the array 
 I have a rule that is responsible for extracting information and I build an array for each element, at the end I have an array of arrays</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How to remove (; ) in the end of array in appian</title><link>https://community.appian.com/thread/94050?ContentTypeID=1</link><pubDate>Fri, 22 Apr 2022 19:15:09 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:d8b134a8-bba5-4435-83d5-d472a6be2b43</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;this won&amp;#39;t help if OP is getting raw array output (into which appian inserts the &amp;quot;;&amp;quot; between entries just as a delimiter for designer visibility).&amp;nbsp; calling split() on the raw output won&amp;#39;t do anything (since it doesn&amp;#39;t actually contain any &amp;quot;;&amp;quot; characters), OR if they somehow call it on a flattened array output with the &amp;quot;;&amp;quot;s inserted between elements, it would appear to do &lt;em&gt;&lt;strong&gt;nothing&lt;/strong&gt;&lt;/em&gt; since it would merely split that flattened text out into a new array, then display that &lt;em&gt;new&lt;span style="text-decoration:underline;"&gt;&lt;/span&gt;&lt;/em&gt;&lt;span style="text-decoration:underline;"&gt;&lt;/span&gt; array with its own &lt;em&gt;new&lt;/em&gt; semicolon delimiters....&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to remove (; ) in the end of array in appian</title><link>https://community.appian.com/thread/94048?ContentTypeID=1</link><pubDate>Fri, 22 Apr 2022 19:11:49 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c0a2237c-bf59-4f73-869b-a9c5f4e1b50f</guid><dc:creator>Naresh</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;If you are planning to remove the semicolon (;) from the&amp;nbsp;give text and want to&amp;nbsp;return a list of items use split() function&lt;/p&gt;
&lt;p&gt;ex: split(&amp;quot;A;B;C&amp;quot;, &amp;quot;;) will return&amp;nbsp;&lt;/p&gt;
&lt;p&gt;A&lt;/p&gt;
&lt;p&gt;B&lt;/p&gt;
&lt;p&gt;C&lt;/p&gt;
&lt;p&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to remove (; ) in the end of array in appian</title><link>https://community.appian.com/thread/94044?ContentTypeID=1</link><pubDate>Fri, 22 Apr 2022 17:12:17 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:572588d1-d9ae-4756-9908-6480a4f3e9e0</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;This is just how Appian shows array data in raw output.&amp;nbsp; What are you trying to do with it?&amp;nbsp; If you&amp;#39;re just trying to display each array member on its own line, you just need to use a function like joinArray().&amp;nbsp; i.e., joinArray(local!myArray, char(10)) would insert a newline character between each.&amp;nbsp; Or whatever separator you&amp;#39;d rather use.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>