I have string like this:
река Марица - гр. Първомай + Maritsa - 132543 - HPoint-Water level
I want to get only Maritsa - 132543 - HPoint-Water level with javascript.
For now I get the string and console log all string, but I need to cut the cyrillic string and - before Maritsa.
The problem is that the loaded names are always different. Is there a way to delete everything before the + including it and show everything after the +

'tsa - 132543 - HPoint-Water level'str.split('+')[1]?