I have such string
Sale: \t\t\t5 Jan \u2013 10 Jan
I want to extract the start and the end of the sale. Very straightforward approach would be to make several spilts, but I want to that using regular expressions. As the result I want to get
start = "5 Jan"
end = "10 Jan"
Is it possible to do that using regex?