Remove Vowels from String

Implement a function to remove all vowels from a given string. Vowels are characters 'a', 'e', 'i', 'o', 'u' and their uppercase equivalents 'A', 'E', 'I', 'O', 'U'. The function should return the modified string with all vowels removed.

Loading...