Hi everyone,
I have a string that contains: Monday,March11,20248:55:10PM
Is there anyway that I can split them into 3 column into Day, Date, and Time respectively?
Thanks and regards.
Solved! Go to Solution.
Hi @James89
Please use Regex tool for your use case as below.
(\w+),(.+,\d\d\d\d)(.+)
Many thanks
Shanker V