------
## 最终结论
```python
def remove_vowels(text):
    vowels = set('aeiouAEIOU')
    result = ''.join([char for char in text if char not in vowels])
    return result
```