Hi Everyone,
I have Original data string as below, is it possible to re-arrange(ascending) and accord to the specific item?
The specific @item()[11] is my target ascending item, the final data after ascending will become as After ascending.
Original data:
[
"ABC",
"KS",
"DND",
"",
"CE",
43117,
43152,
"CL",
"T124",
"CLi",
"CV",
364139,
364139,
"6D",
"",
"",
"",
"",
"",
"",
"",
"",
"CK",
"",
"",
43312,
"CJ"
],
[
"RK",
"GCE",
"DOD",
"",
"CE",
43267,
43203,
"POL",
"W123",
"CKOn",
"CMV",
345139,
364139,
"I453K",
"",
"",
"",
"",
"",
"",
"",
"",
"1CPKS",
"",
"",
43770,
"DIEKNSI"
],
[
"RNK",
"KKMA",
"OUPDA",
"",
"AE",
43667,
43603,
"CPO",
"ISOM",
"LOIN",
"CVOPNS",
404139,
364139,
"6M",
"",
"",
"",
"",
"",
"",
"",
"",
"21",
"",
"",
43670,
"LOJN"
]
After ascending:
[
"RK",
"GCE",
"DOD",
"",
"CE",
43267,
43203,
"POL",
"W123",
"CKOn",
"CMV",
345139,
364139,
"I453K",
"",
"",
"",
"",
"",
"",
"",
"",
"1CPKS",
"",
"",
43770,
"DIEKNSI"
],
[
"ABC",
"KS",
"DND",
"",
"CE",
43117,
43152,
"CL",
"T124",
"CLi",
"CV",
364139,
364139,
"6D",
"",
"",
"",
"",
"",
"",
"",
"",
"CK",
"",
"",
43312,
"CJ"
],
[
"RNK",
"KKMA",
"OUPDA",
"",
"AE",
43667,
43603,
"CPO",
"ISOM",
"LOIN",
"CVOPNS",
404139,
364139,
"6M",
"",
"",
"",
"",
"",
"",
"",
"",
"21",
"",
"",
43670,
"LOJN"
]
Regards,
ilu989