Setup
Trolls are invading the comment section!
To deal with the threat, write a function that takes a string and returns a new string with all vow...
For further actions, you may consider blocking this person and/or reporting abuse
In C#
Or may be just
var cleaned = Regex.Replace(input,"[aeiou]", "", RegexOptions.IgnoreCase);
Nice One!
In Ts:
Python solution.
you could use
regex
to keep it simple :)I am yet to study about regexes :)
Here's a Ruby submission!
Here's a link to the Repl.it: repl.it/@rburmorrison/DevToChallen...
Standard ML of New Jersey Solution
Elm
Example.
Liquid syntax error: Unknown tag 'def'
Ruby:
Some unfancy Common Lisp:
JS
const disemvowel = (str) => str.replace(/[aeoiu]/gi, '');
Python solution 🐍