gpt4 book ai didi

javascript - 如何在 typescript 中将 snake_case 转换为 camelcase?

转载 作者:行者123 更新时间:2023-11-30 08:20:34 26 4
gpt4 key购买 nike

我想使用 TypeScript 将 snake 大小写的字符串转换为驼峰大小写。示例:item_nameitemNameUnit_PriceunitPrice

最佳答案

你可以使用这个函数,我认为它更具可读性,也更简洁:

const snakeCaseToCamelCase = input =>
input
.split("_")
.reduce(
(res, word, i) =>
i === 0
? word.toLowerCase()
: `${res}${word.charAt(0).toUpperCase()}${word
.substr(1)
.toLowerCase()}`,
""
);

关于javascript - 如何在 typescript 中将 snake_case 转换为 camelcase?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54242239/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com