Please suggest to me, how to parse this field to get date and time only without using filter tool.
<time datetime="2017-11-03 12:41:00" type="ago">2017-11-03 12:41:00</time>, <comment-count data="409877" format='@data; comments'>
<time datetime="2017-11-03 10:10:00" type="ago">2017-11-03 10:10:00</time>, <comment-count data="401222" format='@data; comments'>
<time datetime="2017-11-03 12:13:00" type="ago">2017-11-03 12:13:00</time>, <comment-count data="403444" format='@data; comments'>
Solved! Go to Solution.
I think using Parse with RegEx tool is more easier, thanks for the suggestion..
Hi @rouzu if you have same pattern throughout the rows then this short regex will work too:
>(.*)</time> with parse method.
Best,
Vishwa