If I have text like below:
Wow [Game Ad] - CHECK - Arabic
I trying to extract only Arabic from the above text.
I tried (?<=\-\s)(.*)$ and it returns CHECK - Arabic by detecting the first - instead of the last occurence of -.
Is there a way for extracting the string after the last occurrence of the character for lookbehind?