java中将字符串中的元音字母替换为空
时间: 2023-08-10 19:02:20 浏览: 98
在Java中,可以使用正则表达式来替换字符串中的元音字母。以下是将一个字符串中的元音字母替换为空的示例代码:
```java
public class RegexExample {
public static void main(String[] args) {
String input = "Hello World";
String pattern = "[aeiouAEIOU]"; // 匹配元音字母的正则表达式
String replacement = ""; // 替换为空
String output = input.replaceAll(pattern, replacement);
System.out.println(output); // 输出:Hll Wrld
}
}
```
在上面的代码中,使用正则表达式`[aeiouAEIOU]`来匹配元音字母,然后使用`replaceAll()`方法将匹配到的元音字母替换为空。
阅读全文