You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
373 B

4 years ago
## Vowel Dots
### Instructions
4 years ago
Create a function named `vowelDots` that receives a string. Your function should return a new string with a `.` after every vowel.
Your RegEx should be stored in a variable named `vowels`.
> a, e, i, o and u are considered as vowels here.
4 years ago
### Notions
- [RegEx Character Sets](https://github.com/ziishaned/learn-regex#22-character-sets)