Hi All,
I want to sort an array which is having data like below:
@array = {1 aaa bbb ccc 4 sss ddd fff};
In this array above I have two arrays that one is from 1 to ccc and another is from 4 to fff. I want to sort in such a way which will out put me like:
@array = {1 aaa bbb ccc 2 sss ddd fff};
If any kind of solutions are there then please suggest me I am seeking for this soon. If possible then please post some sample codes.
Thanks and Regards,
Chittaranjan.
I want to sort an array which is having data like below:
@array = {1 aaa bbb ccc 4 sss ddd fff};
In this array above I have two arrays that one is from 1 to ccc and another is from 4 to fff. I want to sort in such a way which will out put me like:
@array = {1 aaa bbb ccc 2 sss ddd fff};
If any kind of solutions are there then please suggest me I am seeking for this soon. If possible then please post some sample codes.
Thanks and Regards,
Chittaranjan.
Comment