题目
Given a string S
, remove the vowels 'a'
, 'e'
, 'i'
, 'o'
, and 'u'
from it, and return the new string.
Example 1:
1 | Input: "leetcodeisacommunityforcoders" |
Example 2:
1 | Input: "aeiou" |
Note:
S
consists of lowercase English letters only.- 1 <= S.length <= 1000
解法
解法一:
使用字符串的replace方法,将所有元音字母替换成””。
Java
1 | String removeVowels(String str) { |
解法二:
所有元音作为一个集合,遍历s里面的所有字符,遇到元音就跳过,最后构造一个新的字符串返回
JAVA
1 | String removeVowels(String str) { |