admin管理员组文章数量:1347695
Firstly I could not find a question addressing the whole issue.
I used to pare arrays like this:
array.sort((a, b) => {
return a.localeCompare(b, undefined, {numeric: true, sensitivity: 'base'})
})
But I realized it does not work on an array like ['a', 'A', 'B', -1.50', '0', '1.50', '-2', '2']
.
The expected output would be: ['-2', '-1.50', '0', '1.50', '2', 'A', 'a', 'B']
.
I have some dirty ideas to achieve it. But maybe there is a clean and easy way.
Firstly I could not find a question addressing the whole issue.
I used to pare arrays like this:
array.sort((a, b) => {
return a.localeCompare(b, undefined, {numeric: true, sensitivity: 'base'})
})
But I realized it does not work on an array like ['a', 'A', 'B', -1.50', '0', '1.50', '-2', '2']
.
The expected output would be: ['-2', '-1.50', '0', '1.50', '2', 'A', 'a', 'B']
.
I have some dirty ideas to achieve it. But maybe there is a clean and easy way.
Share Improve this question edited May 9, 2018 at 11:40 Ali Ankarali asked May 9, 2018 at 7:37 Ali AnkaraliAli Ankarali 3,1373 gold badges21 silver badges32 bronze badges 5-
2
I'm not sure, what is the
field
argument intended to do? – CertainPerformance Commented May 9, 2018 at 7:40 - Given an array of objects, I parameterized the attribute of the object, so that I won't write a sort method for different attributes. – Ali Ankarali Commented May 9, 2018 at 7:42
- I guess it is not much relevant to the question so removed it to avoid confusion. – Ali Ankarali Commented May 9, 2018 at 7:44
-
why do you need
{numeric: true, sensitivity: 'base'}
? – Nina Scholz Commented May 9, 2018 at 7:45 - @NinaScholz stackoverflow./a/38641281/6469020 – Ali Ankarali Commented May 9, 2018 at 7:46
3 Answers
Reset to default 7You could prepend the parison by taking the delta of the wanted properties. This saves the order for numerical values.
console.log(
['a', 'A', 'B', '-1.50', '0', '1.50', '-2', '2', 'D']
.sort((a, b) => a - b || a.localeCompare(b, undefined, {sensitivity: 'base'}))
);
numeric: true
option can be omitted for there won't be two numbers to pare at the left hand side of the expression.
const customSort = (array) => {
return array.sort((a, b) => {
let r = /^-?\d+(?:\.\d+)?$/;
if (r.test(a) && r.test(b))
{
return a - b;
}
return a.localeCompare(b, undefined, {numeric: true, sensitivity: 'base'})
})
}
console.log(customSort(['a', 'A', 'B', '-1.50', '0', '1.50', '-2', '2']));
// => [ '-2', '-1.50', '0', '1.50', '2', 'a', 'A', 'B' ]
You should use isNaN
method in order to check if you pare numerical strings. If yes, localeCompare
is not remended , you need to use Number(a) - Number(b)
array = ['a', 'A', 'B','-1.50', '0', '1.50', '-2', '2']
array.sort((a, b) => {
return !isNaN(a) && !isNaN(b) ? Number(a)-Number(b) : a.localeCompare(b, undefined, { sensitivity: 'base'});
})
console.log(array);
Since in Javascript the -
operator is defined only for numeric subtraction, the operands will be coerced to Number
. So you could simply use:
array.sort((a, b) => {
return a - b || a.localeCompare(b, undefined, { sensitivity: 'base'});
})
本文标签: javascriptSort array of strings with negative and positive numbersStack Overflow
版权声明:本文标题:javascript - Sort array of strings with negative and positive numbers - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743840172a2548128.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论