<?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>Text to date conversion</title><link>https://community.appian.com/discussions/f/general/26996/text-to-date-conversion</link><description>How do I convert the &amp;quot;Thu, 10 Nov, 2022&amp;quot; this text to date? 
 I am getting this data from IDP in text format.</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Text to date conversion</title><link>https://community.appian.com/thread/106045?ContentTypeID=1</link><pubDate>Wed, 28 Dec 2022 14:55:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:728ca742-4d32-4667-aa37-4bfabaa1d422</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;My main suggestion for learning stuff like this is to experiment with Appian expression functions and try new things for yourself.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Text to date conversion</title><link>https://community.appian.com/thread/106011?ContentTypeID=1</link><pubDate>Wed, 28 Dec 2022 05:53:09 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:09839a92-df79-4748-9a79-fca62f3a2eb3</guid><dc:creator>vijaykumars5676</dc:creator><description>&lt;p&gt;Thank you so much!!!&lt;br /&gt;Where do I learn this?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Text to date conversion</title><link>https://community.appian.com/thread/106010?ContentTypeID=1</link><pubDate>Wed, 28 Dec 2022 05:43:32 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:249da709-03f8-4afb-b0af-7f65e92f1c2f</guid><dc:creator>Harshitha Mangamuri</dc:creator><description>&lt;p&gt;Hi Vijay Kumar, Please look at this code. Hope it will be helpful if the input is in the mentioned format as above.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!months: {
    &amp;quot;Jan&amp;quot;,
    &amp;quot;Feb&amp;quot;,
    &amp;quot;Mar&amp;quot;,
    &amp;quot;APR&amp;quot;,
    &amp;quot;May&amp;quot;,
    &amp;quot;Jun&amp;quot;,
    &amp;quot;Jul&amp;quot;,
    &amp;quot;Aug&amp;quot;,
    &amp;quot;Sep&amp;quot;,
    &amp;quot;Oct&amp;quot;,
    &amp;quot;Nov&amp;quot;,
    &amp;quot;Dec&amp;quot;
  },
  local!splitString: ldrop(
    a!forEach(
      items: split(ri!input, &amp;quot; &amp;quot;),
      expression: substitute(fv!item, &amp;quot;,&amp;quot;, &amp;quot;&amp;quot;)
    ),
    1
  ),
  date(
    tointeger(local!splitString[3]),
    wherecontains(local!splitString[2], local!months),
    tointeger(local!splitString[1])
  )
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Text to date conversion</title><link>https://community.appian.com/thread/106002?ContentTypeID=1</link><pubDate>Tue, 27 Dec 2022 18:41:42 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:9d41125f-9dbe-433f-b635-efe3e7f21911</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;Off the top of my head I&amp;#39;d guess you will need to build your own Expression Rule to parse the specified text date format you need to consume into a standard Appian Date type object.&amp;nbsp; If you do some searching in past posts here, i&amp;#39;m guessing you&amp;#39;ll find examples that others have built.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>