If I want to take the text in between two slashes for example:
char str[] = ABCDEFG/HIGKLM/NOPQRS,str[];
While (str[index]!= '\0'){
str1 = TEXT BETWEEN THE SLASHES;
}
So first I want to get "ABCDEFG" into a different array, then "HIGKLM" and finally "NOPQRS"