Is there away i can sort the following array into the correct order?
Array
(
[0] => apr
[1] => aug
[2] => dec
[3] => feb
[4] => jan
[5] => jul
[6] => jun
[7] => mar
[8] => may
[9] => nov
[10] => oct
[11] => sep
)
NOTE The array comes to me like this, and sometimes it will not have all th...
So, for some strange reason I end up with a 100GB log file that is unsorted (actually it's partially sorted), while the algorithms that I'm attempting to apply require sorted data. A line in the log file looks like so
data <date> data data more data
I have access to C# 4.0 and about 4 GB of RAM on my workstation. I would imagine that ...
Hi,
I have data :- 31-May-07
Its in a calculated column of the list. The method I used to get it :- =IF(FDate="","",TEXT(FDate,"dd-mmm-yy")) {FDate is a DateTime type of column. The returned value is stored in a "Single Line of Text" column type.}
I am now unable to sort that column as its Text now and sorting is done on basis of strin...