JavaScript Number toLocaleString() 方法



JavaScript Number toLocaleString() 方法用于根据区域设置语言格式将数字表示为字符串。区域设置语言取决于计算机上设置的区域设置。它返回一个包含此数字的语言敏感表示形式的字符串。

注意:区域设置是一个带有 BCP 47 语言标签的字符串,或者是一个这样的字符串数组。

以下是不同国家/地区的一些区域设置列表:

  • en-IN - 表示“印度”英语的区域设置。
  • en-US - 表示“美国”英语的区域设置。
  • ar-EG - 表示“阿拉伯语”的区域设置。

语法

以下是 JavaScript Number toLocaleString() 方法的语法:

toLocaleString(locales, options)

参数

此方法接受名为“locales”和“options”的两个参数,其中“locales”参数是可选的,如下所述:

  • locales(可选) - 它是要使用的特定语言格式。
  • options - 它是一个调整输出格式的对象。

返回值

此方法返回根据特定于语言的格式表示给定数字的字符串。

示例 1

如果向此方法传递任何参数,它将使用默认区域设置语言格式将数字作为字符串返回。

<html>
<head>
<title>JavaScript toLocaleString() method</title>
</head>
<body>
<script>
   const number = 2345;
   document.write("Given option value = ", number);
   document.write("<br>String representation = ", number.toLocaleString());
</script>
</body>
</html>

输出

上述程序返回新的字符串表示形式为 2,345:

Given option value = 2345
String representation = 2,345

示例 2

如果我们将'fi-FI'作为可选的'locale'参数值传递,它将使用芬兰语语言和约定将数字格式化为字符串。

<html>
<head>
<title>JavaScript toLocaleString() method</title>
</head>
<body>
<script>
   const number = 120131;
   const locale = "fi-FI";
   document.write("Given number value = ", number);
   document.write("<br>Locale value = ", locale);
   document.write("<br>String representation(FINLAND language) = ", number.toLocaleString(locale));
</script>
</body>
</html>

输出

上述程序使用特定语言“芬兰”将数字值转换为字符串。

Given number value = 120131
Locale value = fi-FI
String representation(FINLAND language) = 120 131

示例 3

如果我们将'en-US'作为'locale'参数值,并将'USD'作为'option'参数值传递,它将使用美式英语语言和货币将数字格式化为字符串。

<html>
<head>
<title>JavaScript toLocaleString() method</title>
</head>
<body>
<script>
   const number = 1350;
   const locale = "en-US";
   const option = {style: "currency", currency: "USD"};
   document.write("Given number value = ", number);
   document.write("<br>Locale value = ", locale);
   document.write("<br>Option value = ", option.style, ' : ', option.currency);
   document.write("<br>String representation(US) = ", number.toLocaleString(locale, option));
</script>
</body>
</html>

输出

执行上述程序后,它将数字字符串转换为美式货币格式。

Given number value = 1350
Locale value = en-US
Option value = currency : USD
String representation(US) = $1,350.00
广告