es-toolkit/docs/zh_hans/reference/string/snakeCase.md
BlackWhite e9ede74362
docs: Translate Simplified Chinese (#165)
* Translate Simplified Chinese

* Supplement the omitted

* Supplement the omitted

* Supplement the omitted

* Supplement the omitted

* Supplement the omitted

* Supplement the omitted

* Supplement the omitted

* Supplement the omitted

* Supplement the omitted

* Update docs/.vitepress/shared.mts

---------

Co-authored-by: Sojin Park <raon0211@gmail.com>
2024-07-12 10:08:55 +09:00

713 B
Raw Blame History

snakeCase

将字符串转换为蛇形命名法snake case

蛇形命名法是一种命名约定其中每个单词都以小写字母书写并用下划线_分隔。

例如 snake_case

签名

function snakeCase(str: string): string;

参数

  • str (string): 要转换为蛇形命名法的字符串。

返回值

(string) 转换后的蛇形命名法字符串。

示例

import { snakeCase } from 'es-toolkit/string';

snakeCase('camelCase'); // 返回  'camel_case'
snakeCase('some whitespace'); // 返回  'some_whitespace'
snakeCase('hyphen-text'); // 返回  'hyphen_text'
snakeCase('HTTPRequest'); // 返回  'http_request'