Hi, I have a string which goes //John/McCormik/25
The slash is used to divide the string into a few parts. Now I would like to return them, i.e. to de-concatenate and retrieve:
*nothing ("") for the first position,
*"John" for the second position,
*"McCormick" for the third position, and
*"25" for the fourth position.
The slash is used to divide the string into a few parts. Now I would like to return them, i.e. to de-concatenate and retrieve:
*nothing ("") for the first position,
*"John" for the second position,
*"McCormick" for the third position, and
*"25" for the fourth position.
Last edited: