Hello again. Today I have problem to break string and take those peaces into array. For example I have this string: 7!3!9!05!2401!64!05!11!64!4!343!2!11!9!04 .
Now, I'd like to take all the numbers separated by sign ! . So my new array contain:
7 , 3, 9, 05, 2401 , 64, 05, 11, 64, 5, 343, 2 ,11, 9, 04 .
How can I do such a thing?