vue如何实现英文小大写转换,我们可以使用JavaScript提供的toLowerCase()
和toUpperCase()
函数来实现这个功能。
全部转换为小写字母
const componentName = 'webjianzhan'; const kebabName = componentName.toLowerCase().replace(/([a-z])([A-Z])/g, '$1-$2');
每个单词的首字母转换为大写字母
const componentName = 'web-jianzhan'; const camelName = componentName.replace(/-([a-z])/g, (match, p1) => p1.toUpperCase());
标签: toLowerCase, toUpperCase, 英文小大写转换
上面是“vue如何实现英文小大写转换”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_4613.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!