String[] parts=check.split("\\sSte\\s");
(OR)
String[] parts=check.split(" Ste ");

this is used to split the address at " Ste ".
Here \\s is for space.
U will get...