I have a string of the next format \"ORDER20100322194007\", where 20100322 is a date and 194007 is a time. How to parse a string and g
\"ORDER20100322194007\"
20100322
194007
If you don't have a fixed structure of your string say order will not always be there then you can use regex to separate the numbers and characters and then use convert to datetime function for the numbers separated.