String yourString = "Hello/Test/World"; String[] strings = yourString.split("/" /*<- Regex */); Output: strings = [Hello, Test, World]