<?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>Adding Comma when user clicks enter key in Paragraph field</title><link>https://community.appian.com/discussions/f/user-interface/35452/adding-comma-when-user-clicks-enter-key-in-paragraph-field</link><description>i want to add comma to separate the numbers after clicking enter key 
 the current output like: 98998997899 
 but my desired output should be : 9899,899,7899 
 How can i acheive this....</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Adding Comma when user clicks enter key in Paragraph field</title><link>https://community.appian.com/thread/138090?ContentTypeID=1</link><pubDate>Mon, 15 Jul 2024 11:54:07 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5956363d-033a-43b7-9ac1-a7b774052c5f</guid><dc:creator>sachink2402</dc:creator><description>&lt;p&gt;&lt;a href="/members/sriramk5349"&gt;Sri Ram Kaja&lt;/a&gt;&amp;nbsp; Thankyou so much its working fine&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Adding Comma when user clicks enter key in Paragraph field</title><link>https://community.appian.com/thread/138087?ContentTypeID=1</link><pubDate>Mon, 15 Jul 2024 11:46:16 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:c4c28064-50fe-44a0-aaa3-df5898f986cf</guid><dc:creator>Sri Ram Kaja</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!text,
  local!numbers,
  a!paragraphField(
    label: &amp;quot;test&amp;quot;,
    value: local!text,
    saveInto:{
      local!text,
      a!save(
        local!numbers,
        a!localVariables(
          local!data:local!text,
          tointeger(split(local!data,char(10)))
        )
      )
    } 
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>