服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.upperCase(string='')

string以空格分隔的字词转换为大写字母。

版本

4.0.0

参数
  1. [string=''] (字符串):要转换的字符串。
返回

(字符串):返回上方的字符串。

_.upperCase('--foo-bar');
// => 'FOO BAR'
 
_.upperCase('fooBar');
// => 'FOO BAR'
 
_.upperCase('__foo_bar__');
// => 'FOO BAR'