Skip to content
On this page

Home > @taiyuuki/utils > str_capital_all

str_capital_all() function

该函数将给定字符串中每个单词的首字母大写。

Signature:

typescript
declare function str_capital_all(str: string): string;
declare function str_capital_all(str: string): string;

Parameters

ParameterTypeDescription
strstring包含一个或多个由空格分隔的单词的字符串。

Returns:

string

函数 str_capital_all 返回一个新字符串,其中输入字符串中的所有单词都大写。

Released under the MIT License.