本文介绍了Javascript将数字比较为字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我希望在 javascript 中比较两个字符串.我正在使用 localeCompare 方法,但输出不如预期

I wish to compare two strings in javascript. I am using localeCompare method but the output is not as expected

116457 < 3085
false

"116457" < "3085"
true

"116457".localeCompare("3085")
-1

第二种和第三种情况的输出不符合预期.

Output in second and third case is not as expected.

我知道它是按字典顺序排序的,但我仍然无法理解为什么会这样以及我应该如何克服这个问题.

I know it sorts in Lexicographical order but still I am having trouble understanding why is it so and how should I overcome this.

任何帮助将不胜感激.

推荐答案

如果您想比较它们而不将它们转换为数字,您可以设置 numeric: trueoptions 参数

If you want to compare them without converting them to numbers, you can set numeric: true in the options parameter

console.log(
  "116457".localeCompare("3085", undefined, { numeric: true })
)
console.log(
  "116457".localeCompare("3085")
)

这篇关于Javascript将数字比较为字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 19:14