Click here to Skip to main content
15,884,298 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hey friends i have an array with the following values

asd sdf dsdf 1sadf *sdf !sdf @asdf _asd .sadf (sadf )sadf #sadf ^asdf &asdf %asdf -sadf =sadf +sadf -sdf


and i want to sort it in javascript in the following way in to three parts.

1) word starting from special character
2) word starting from digit
3) word starting from alphabets.

So this should be the sequence of the sorted array..

Please help me out..!
Posted
Comments
Ravi Tuvar 8-Jun-12 10:40am    
You can refer how in this page how the sorting is done..!

http://www.sciencebuddies.org/science-fair-projects/project_ideas/CompSci_p002.shtml
Sergey Alexandrovich Kryukov 8-Jun-12 11:15am    
What character do you call "special"? There is no such thing.
What have you done? What's the problem?
--SA

You can pass a sort function to JavaScript's array.sort().

JavaScript
function sortFunction(a, b) {
  // your array elements will be passed to this function as a, b
  // TODO:
  //   compare a to b
  //   if a should come before b, return -1
  //   if a should come after b, return 1
  //   if a and b should be considered equal, return 0
  return 0;
}

var myarray = ['asd', 'sdf', ..., '-sdf'];
myarray.sort(sortFunction);


Note: Searched Google for "javascript array sorting", found this[^] as the first result.
 
Share this answer
 
Here is the correct answer..!


C#
function MySort(alphabet)
{
    return function(a, b) {
        var index_a = alphabet.indexOf(a[0]),
        index_b = alphabet.indexOf(b[0]);

        if (index_a === index_b) {
            // same first character, sort regular
            if (a < b) {
                return -1;
            } else if (a > b) {
                return 1;
            }
            return 0;
        } else {
            return index_a - index_b;
        }
    }
}

var items = ['asd','sdf', 'dsdf', '1sadf', '*sdf', '!sdf', '@asdf', '_asd', '.sadf', '(sadf', ')sadf', '#sadf', '^asdf', '&asdf', '%asdf', '-sadf', '=sadf', '+sadf', '-sdf', 'sef'],
sorter = MySort('*!@_.()#^&%-=+01234567989abcdefghijklmnopqrstuvwxyz');

console.log(items.sort(sorter));
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900