📜  Lodash _.upperCase() 方法

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

Lodash _.upperCase() 方法

_.upperCase()方法用于将整个字符串转换为以空格分隔的单词,大写。

句法:

_.upperCase( [string = ''])

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

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

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

下面的示例说明了 JavaScript 中的 Lodash _.upperCase() 方法:

示例 1:

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


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


输出:

'GEEKS FOR GEEKS'
'GEEKS FOR GEEKS'

示例 2:

Javascript

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

输出:

'HELLO GEEKS'