Hi, I want to split the string as two parts. those. I want to break this line only once.
EX: String-----> hai,Bye,Go,Run
I want to split this line with a semicolon (,) into only two parts
ie
String1 ---> hai
String2 ---->Bye,Go,Run
Please help me how can I do this.
source
share