I have the following dates:
2020-09-01,13:23:29.000+0000
2020-07-22,13:13:48.000+0000
2020-01-09,21:58:48.000+0000
I wonder how can I just keep the date in atom, the result should be like:
2020-09-01
2020-07-22
2020-01-09
I tried to find all ^(.*?)\s,.*$
and then replace by $1
which was not working.