Split String

Hello to all.
I have a string like below:

String x="Hello this is your specifications=>;Name=Leon;LName=Corleone;Age=27;Height=185;";

How can I split each part and save in array of Strings.
Very thank you.

RTFM. The String documentation page shows ALL the functions you need (indexOf() and substring()).

Quit using Strings!