CoffeeScript 字符串 - toLocaleLowerCase()
描述
此方法用于在尊重当前区域设置的同时将字符串中的字符转换为小写。 对于大多数语言,它返回与 toLowerCase 相同的输出。
语法
下面给出的是 JavaScript 的 toLocaleLowerCase() 方法的语法。 我们可以在 CoffeeScript 代码中使用相同的方法。
string.toLocaleLowerCase( )
示例
以下示例演示了在 CoffeeScript 代码中使用 JavaScript 的 toLocaleLowerCase() 方法。 将此代码保存在名为 toLocaleLowerCase.coffee 的文件中
str = "APPLES ARE ROUND AND ORANGES ARE JUCY."; console.log str.toLocaleLowerCase()
打开命令提示符并编译.coffee 文件,如下所示。
c:\> coffee -c coffee toLocaleLowerCase.coffee
在编译时,它会提供以下 JavaScript。
// Generated by CoffeeScript 1.10.0 (function() { var str; str = "APPLES ARE ROUND AND ORANGES ARE JUCY."; console.log(str.toLocaleLowerCase()); }).call(this);
现在,再次打开命令提示符 并运行 CoffeeScript 文件,如下所示。
c:\> coffee toLocaleLowerCase.coffee
执行时,CoffeeScript 文件产生以下输出。
apples are round and oranges are juicy.