Spinal Tap Case -freecodecamp算法题目
Posted ahswch
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spinal Tap Case -freecodecamp算法题目相关的知识,希望对你有一定的参考价值。
Spinal Tap Case
1.要求
- 将字符串转换为 spinal case。
- Spinal case 是 all-lowercase-words-joined-by-dashes 这种形式的,也就是以连字符连接所有小写单词。
2.思路
- 用.replace()和正则表达式把小写字母和大写字母之间用空格隔开
- 再
3.再用.replace()把空格替换成‘-‘,最后小写化即可
function spinalCase(str) {
var regex = /s+|_+/g;
str = str.replace(/([a-z])([A-Z])/g, ‘$1 $2‘);
return str.replace(regex, ‘-‘).toLowerCase();
}
spinalCase(‘This Is Spinal Tap‘);
4.相关链接
- https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/RegExp
- https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/String/replace
以上是关于Spinal Tap Case -freecodecamp算法题目的主要内容,如果未能解决你的问题,请参考以下文章
Spinal Tap Case -freecodecamp算法题目
linux shell:将蛇形命名法(snake-case)变量字符串转为驼峰命名法(camel-case)变量字符串
论文笔记:CTSpine1K: A Large-Scale Dataset for Spinal Vertebrae Segmentation in Computed Tomography