Please help.
I want to get the values of some parameters in a url, Ii know the idea but I dont know how to do get them. I was using an lib to do it, but in android it doesnt work so I am trying to do it manually.
I have an string that is an url:
local url=“fbconnect://success?**to[**0]= 293321147507203 &**to[**1]= 293321147507202 &request=528210977333164”
I want to detect the substrings to[ and get the numbers 293321147507203,293321147507202 and store them in a table.
I know the process is detect the substring to[ and then get the substring that is 3 character (or 6 not sure if it counts from the begining of “to[” and then get the number, always is a 15 digit number.
Please help. I am bad with this complex process of recurrency.