I need to get the time out of this string format I get in the _event.EventText, how can I get it, I believe it has similar topics, but I did not manage to find the right to solve my problem.
This is a text from which I need to extract text and time. ("09:00:00\nText")
I got the text to get it in this way:
var value = _event.EventText;
var text = value.Substring(value.LastIndexOf('\n') + 1);
now I need some time, how can I get it?