Hi All,
I have to split the string based on the following criteria
1. this is first string <Line feed>
2. This is second string <Line feed>
3. This is a Third string that is pretty long<Line feed>
I want to, this to be together
4. This is the third part.
I want the below string extracted in an array
1 and this is first string
2 and This is second string
3 and This is a Third string that is pretty long I want to, this to be together
4 and This is the third part.
so I want the
arr[0]=1 ad arr[1]=this is first string
ad so on
any help will be appreciated
Go to the complete details ...