📜  Lodash _.toUpper() 方法

📅  最后修改于: 2022-05-13 01:56:55.306000             🧑  作者: Mango

Lodash _.toUpper() 方法

Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。

_.toUpper()方法用于将整个字符串转换为大写。此方法不会影响任何已经大写的特殊字符、数字和字母。

句法:

_.toUpper( [string = ''])

参数:此方法接受如上所述和如下所述的单个参数:

  • 字符串:此参数保存要转换的字符串。

返回值:该方法返回大写字符串。

示例 1:

Javascript
// Requiring the lodash library  
const _ = require("lodash");  
       
// Use of _.toUpper() method 
console.log(_.toUpper('Geeks-For-Geeks')); 
console.log(_.toUpper('#--GeeksForGeeks--#'));


Javascript
// Requiring the lodash library  
const _ = require("lodash");  
  
//  Given string     
let str = "Hello Geeks!";
  
// Use of _.toUpper() method 
console.log(_.toUpper(str));


输出:

'GEEKS-FOR-GEEKS'
'#--GEEKSFORGEEKS--#'

示例 2:

Javascript

// Requiring the lodash library  
const _ = require("lodash");  
  
//  Given string     
let str = "Hello Geeks!";
  
// Use of _.toUpper() method 
console.log(_.toUpper(str)); 

输出:

'HELLO GEEKS!'