mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-15 12:43:19 +09:00
Updated file paths
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
This exercise is tricky and was removed from our recommendations because it mostly leverages regular expressions for the solution, and those aren't really taught at this point in our curriculum.
|
||||
|
||||
Leaving it here for posterity, or a good challenge for anyone that wants to give it a shot.
|
||||
|
||||
# Exercise XX - snakeCase
|
||||
|
||||
Convert phrases and words into snake case
|
||||
|
||||
> Snake case (or snake\_case) is the practice of writing compound words or phrases in which the elements are separated with one underscore character (\_) and no spaces, with each element's initial letter usually lowercased as in "foo\_bar"
|
||||
|
||||
```javascript
|
||||
snakeCase('Hello, World!') // hello_world
|
||||
snakeCase('snakeCase') // snake_case
|
||||
```
|
||||
@@ -0,0 +1,6 @@
|
||||
const snakeCase = function() {
|
||||
|
||||
};
|
||||
|
||||
// Do not edit below this line
|
||||
module.exports = snakeCase;
|
||||
@@ -0,0 +1,22 @@
|
||||
const snakeCase = require('./snakeCase')
|
||||
|
||||
describe('snakeCase', () => {
|
||||
test('works with simple lowercased phrases', () => {
|
||||
expect(snakeCase('hello world')).toEqual('hello_world');
|
||||
});
|
||||
test.skip('works with Caps and punctuation', () => {
|
||||
expect(snakeCase('Hello, World???')).toEqual('hello_world');
|
||||
});
|
||||
test.skip('works with longer phrases', () => {
|
||||
expect(snakeCase('This is the song that never ends....')).toEqual('this_is_the_song_that_never_ends');
|
||||
});
|
||||
test.skip('works with camel case', () => {
|
||||
expect(snakeCase('snakeCase')).toEqual('snake_case');
|
||||
});
|
||||
test.skip('works with kebab case', () => {
|
||||
expect(snakeCase('snake-case')).toEqual('snake_case');
|
||||
});
|
||||
test.skip('works with WTF case', () => {
|
||||
expect(snakeCase('SnAkE..CaSe..Is..AwEsOmE')).toEqual('snake_case_is_awesome');
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,19 @@
|
||||
const snakeCase = function (string) {
|
||||
// wtf case
|
||||
string = string.replace(/\.\./g, " ");
|
||||
|
||||
// this splits up camelcase IF there are no spaces in the word
|
||||
if (string.indexOf(" ") < 0) {
|
||||
string = string.replace(/([A-Z])/g, " $1");
|
||||
}
|
||||
|
||||
return string
|
||||
.trim()
|
||||
.toLowerCase()
|
||||
.replace(/[,\?\.]/g, "")
|
||||
.replace(/\-/g, " ")
|
||||
.split(" ")
|
||||
.join("_");
|
||||
};
|
||||
|
||||
module.exports = snakeCase;
|
||||
@@ -0,0 +1,26 @@
|
||||
const snakeCase = require('./snakeCase-solution');
|
||||
|
||||
describe('snakeCase', () => {
|
||||
test('works with simple lowercased phrases', () => {
|
||||
expect(snakeCase('hello world')).toEqual('hello_world');
|
||||
});
|
||||
test.skip('works with Caps and punctuation', () => {
|
||||
expect(snakeCase('Hello, World???')).toEqual('hello_world');
|
||||
});
|
||||
test.skip('works with longer phrases', () => {
|
||||
expect(snakeCase('This is the song that never ends....')).toEqual(
|
||||
'this_is_the_song_that_never_ends'
|
||||
);
|
||||
});
|
||||
test.skip('works with camel case', () => {
|
||||
expect(snakeCase('snakeCase')).toEqual('snake_case');
|
||||
});
|
||||
test.skip('works with kebab case', () => {
|
||||
expect(snakeCase('snake-case')).toEqual('snake_case');
|
||||
});
|
||||
test.skip('works with WTF case', () => {
|
||||
expect(snakeCase('SnAkE..CaSe..Is..AwEsOmE')).toEqual(
|
||||
'snake_case_is_awesome'
|
||||
);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user