I have a date 12/19/2016 8:54
in a variable. I want the value of only the time without the date. How do I do this?
Examples:
Input:
12/19/2016 8:54
Output:8:54
Input:
2/2/2018 11:30
Output:11:30
The only way I see this is string manipulation, which I believe is a bad idea.