Get string before Split separator

Goodmorning,

I have a question how it possible to do this:
my example is “… PRO: Disneyland PrP DESC: This is a magic park.”

I need to take (split) only "PRO: Disneyland PrP "

after i need to remove “Pr.P”

So finaly i need to take only this word “Disneyland”

Please give me a hand
Thank you very much
have a good day

@Viorica_Marga,

Try below one:

RequiredString = yourString.split(" ".ToCharArray)(1)