-7
(
56435614315645164,
{
data = (
{
"created_time" = "2014-01-20T16:40:22+0000";
id = "277617849058209";
message = "abcdefght";
},
}
我有此陣列(在索引0處)。我如何將這個數組分割成字符串?結果應該是這樣的:
string 1=56435614315645164;
string2={
data = (
{
"created_time" = "2014-01-20T16:40:22+0000";
id = "277617849058209";
message = "abcdefght";
},
}
我想再拆串2爲:
ssting1=data=
sstring2=created time=
sstring3=id=
sstring4=message=
謝謝它確實幫助我 – user3168158