I have an array with the following values
JavaScript
x
3
1
asd sdf dsdf 1sadf *sdf !sdf @asdf _asd .sadf (sadf )sadf #sadf
2
^asdf &asdf %asdf -sadf =sadf +sadf -sdf
3
and i want to sort it in javascript in the following way in to three parts.
- word starting from special character
- word starting from digit
- word starting from alphabets.
So this should be the sequence of the sorted array.
EDIT: Here’s a function that I’ve been experimenting with:
JavaScript
1
39
39
1
function naturalSort(a, b) {
2
a = a.path.toLowerCase();
3
b = b.path.toLowerCase();
4
var re = /(^-?[0-9]+(.?[0-9]*)[df]?e?[0-9]?$|^0x[0-9a-f]+$|[0-9]+)/gi,
5
sre = /(^[ ]*|[ ]*|[_]*$)/g,
6
dre = /(^([w ]+,?[w ]+)?[w ]+,?[w ]+d+:d+(:d+)?[w ]?|^d{1,4}[/-]d{1,4}[/-]d{1,4}|^w+, w+ d+, d{4})/,
7
hre = /^0x[0-9a-f]+$/i,
8
ore = /^0/,
9
// convert all to strings and trim()
10
x = a.toString().replace(sre, '') || '',
11
y = b.toString().replace(sre, '') || '',
12
// chunk/tokenize
13
xN = x.replace(re, '$1').replace(/$/, '').replace(/^/, '').split(''),
14
yN = y.replace(re, '$1').replace(/$/, '').replace(/^/, '').split(''),
15
// numeric, hex or date detection
16
xD = parseInt(x.match(hre)) || (xN.length != 1 && x.match(dre) && Date.parse(x)),
17
yD = parseInt(y.match(hre)) || xD && y.match(dre) && Date.parse(y) || null;
18
// first try and sort Hex codes or Dates
19
if (yD)
20
if (xD < yD) return -1;
21
else if (xD > yD) return 1;
22
// natural sorting through split numeric strings and default strings
23
for (var cLoc = 0, numS = Math.max(xN.length, yN.length); cLoc < numS; cLoc++) {
24
// find floats not starting with '0', string or 0 if not defined (Clint Priest)
25
oFxNcL = !(xN[cLoc] || '').match(ore) && parseFloat(xN[cLoc]) || xN[cLoc] || 0;
26
oFyNcL = !(yN[cLoc] || '').match(ore) && parseFloat(yN[cLoc]) || yN[cLoc] || 0;
27
// handle numeric vs string comparison - number < string - (Kyle Adams)
28
if (isNaN(oFxNcL) !== isNaN(oFyNcL)) return (isNaN(oFxNcL)) ? -1 : 1;
29
// rely on string comparison if different types - i.e. '02' < 2 != '02' < '2'
30
else if (typeof oFxNcL !== typeof oFyNcL) {
31
oFxNcL += '';
32
oFyNcL += '';
33
}
34
if (oFxNcL <= oFyNcL) return -1;
35
if (oFxNcL >= oFyNcL) return 1;
36
}
37
return 0;
38
}
39
Advertisement
Answer
To be honest, I have no idea what your posted function does … at all.
The following approach compares strings on their first character, using positional occurrence. Strings with the same first character are sorted regularly.
Btw, didn’t test for empty strings.
JavaScript
1
25
25
1
function MySort(alphabet)
2
{
3
return function(a, b) {
4
var index_a = alphabet.indexOf(a[0]),
5
index_b = alphabet.indexOf(b[0]);
6
7
if (index_a === index_b) {
8
// same first character, sort regular
9
if (a < b) {
10
return -1;
11
} else if (a > b) {
12
return 1;
13
}
14
return 0;
15
} else {
16
return index_a - index_b;
17
}
18
}
19
}
20
21
var items = ['asd','sdf', 'dsdf', '1sadf', '*sdf', '!sdf', '@asdf', '_asd', '.sadf', '(sadf', ')sadf', '#sadf', '^asdf', '&asdf', '%asdf', '-sadf', '=sadf', '+sadf', '-sdf', 'sef'],
22
sorter = MySort('*!@_.()#^&%-=+01234567989abcdefghijklmnopqrstuvwxyz');
23
24
console.log(items.sort(sorter));
25
Output:
JavaScript
1
4
1
["*sdf", "!sdf", "@asdf", "_asd", ".sadf", "(sadf", ")sadf", "#sadf", "^asdf",
2
"&asdf", "%asdf", "-sadf", "-sdf", "=sadf", "+sadf", "1sadf",
3
"asd", "dsdf", "sdf", "sef"]
4