I read this Answers from Stack overflow
Tried it and work fine for the first occurrence of two characters.
Here i have an input String like
S1:99,78,67,60,75;S2:66,76,56,70,80;S3:89,76,81,70,90;
Answer should be displayed depending on the identifier S%
. For example if the user writes S1, the programm should return the values till it reaches the semicolon. (in this example it should be: 99,78,67,60,75).
Could you help me achieve this result.