I've been asking about it here lately, but I have one more example that I can not deal with.
import re
title = "Nad Ziemią / Above Ground – test - filmy i seriale"
if title.find('/') >= 0:
original_title = (re.split('[-/()]', title)[1])
print(original_title)
The result of this will be:
Above Ground - test
And I need to split another dash to get only the movie title:
Above Ground
Is it possible to do all in one?
Regards.