1
から変数と値を抽出します。私はAJAX機能から取得した結果が、この形式のテキストですAJAXテキスト応答
"&userId=2&mytotal=7&name0=this+is+my+text&name0=this+is+another+text&name1=this+is+a+third+text"
How can I get the different variables and values with this format ?
userId=2
mytotal=7
name[0]="this is my text"
name[1]="this is another text"
name[2]="this is a third text"
Thank you for your help.