I would like to convert dates in the format like 24 february 2014
to proper RSS pubDate
format (actually february
on my pages is written in Russian).
I have the following code to create own RSS -
XPath Fetch Page
URL: http://www.tcsbank.ru/about/news-archive/
Extract Using XPath: //li[@class='news-list__item']
Use HTML5 parser: yes
Loop
For each *item* in input field
...
PubDate: item.span
emit *all* results
Loop
For each *item.pubDate*
Replace
first * january * with *.01.*
first * february * with *.02.*
...
assign results to *item.pubDate*
In result, my pubDate
contains value in the format DD.MM.YYYY
(and works only for first 10 months since Replace
supports 10 replacements only). Which is still invalid date.
How should I fix that?