<?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 take data from array</title><link>https://community.appian.com/discussions/f/integrations/19000/how-to-take-data-from-array</link><description>Hello , 
 How can i take from this array a sigle data , for example i wanna show only Document1 , Document2 , Document3 . 
 without [,{,&amp;quot;nombredoc&amp;quot;,: 
 
 
 Thx.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How to take data from array</title><link>https://community.appian.com/thread/74571?ContentTypeID=1</link><pubDate>Mon, 08 Jun 2020 12:43:27 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9310fec6-7d0e-49ee-b957-730f2e105491</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;The screenshot you posted looks like a JSON string, in which case you would want to use&amp;nbsp;&lt;em&gt;&lt;strong&gt;a!fromJson()&lt;/strong&gt;&lt;/em&gt; to translate the JSON into a dictionary, and then you could simply access the document names using the dot property &amp;quot;nombredoc&amp;quot;.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="java"&gt;a!localVariables(
  local!jsonDictionary: a!fromJson(ri!yourtext),
  
  local!jsonDictionary.nombredoc
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>