将字符串转换为 kebab-case
将输入字符串转换为 kebab-case(以连字符 - 分隔的形式), 处理大小写转换、去除多余的空格或下划线,并规范化连字符的使用。
-
const result = kebabCase("HelloWorld");console.log(result); // 输出 "hello-world" Copy
const result = kebabCase("HelloWorld");console.log(result); // 输出 "hello-world"
const result = kebabCase("hello world_example");console.log(result); // 输出 "hello-world-example" Copy
const result = kebabCase("hello world_example");console.log(result); // 输出 "hello-world-example"
输入的字符串
转换后的 kebab-case 字符串
将字符串转换为 kebab-case
将输入字符串转换为 kebab-case(以连字符
-
分隔的形式), 处理大小写转换、去除多余的空格或下划线,并规范化连字符的使用。Example
Example