-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathString Task.js
25 lines (20 loc) · 1021 Bytes
/
String Task.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
Description:
Petya started to attend programming lessons. On the first lesson his task was to write a simple program. The program was supposed to do the following: in the given string, consisting of uppercase and lowercase Latin letters, it:
deletes all the vowels,
inserts a character "." before each consonant,
replaces all uppercase consonants with corresponding lowercase ones.
Vowels are letters "A", "O", "Y", "E", "U", "I", and the rest are consonants. The program's input is exactly one string, it should return the output as a single string, resulting after the program's processing the initial string.
Input:
The first argument represents input string of Petya's program. This string only consists of uppercase and lowercase Latin letters.
Output:
Return the resulting string.
Examples:
('tour') => '.t.r'
('Codewars') => '.c.d.w.r.s'
('aBAcAba') => '.b.c.b'
(c)Alexander
*/
function stringTask(s){
return s.replace(/[aeiuoy]/gi,'').split``.map(v=>'.'+v).join``.toLowerCase()
}