I have a String like this "+91 2895675148 / +91 123456789 / +91 987654321"
. I want to split above string into
String str1 = +91 2895675148
String str2 = +91 1234567
String str3 = +91 987654321
How to make separate the above numbers from string in java without using index as a parameter
Thanks