替换字符串 Java
Replacing Strings Java
我有这个功能来检查某些单词是否出现在特定行中,然后用给定的字符将它们包围起来。
上面的代码很有魅力,但是由于字符串数组 "words" 中的单词总是小写,所以单词也将是小写。我该如何解决这个问题?
输入:
BufferedReader in = "Hello, my name is John:";
char c = '*';
String [] words = {"hello","john"};
期望的输出:
BufferedWriter out = "*Hello*, my name is *John*:";
实际输出:
BufferedWriter out = "*hello*, my name is *john*";
代码:
public void replaceString(BufferedReader in, BufferedWriter out, char c, String[] words){
String line_in = in.readLine();
while (line_in != null) {
for (int j = 0; j < words.length; j++) {
line_in = line_in.replaceAll("(?i)" + words[j], bold + words[j]
+ bold);
}
out.write(line_in);
out.newLine();
line_in = in.readLine();
}
}
使用
line_in.replaceAll("(?i)(" + words[j] + ")", bold + "" + bold);
// \________________/ \/
// capture word reference it
我有这个功能来检查某些单词是否出现在特定行中,然后用给定的字符将它们包围起来。
上面的代码很有魅力,但是由于字符串数组 "words" 中的单词总是小写,所以单词也将是小写。我该如何解决这个问题?
输入:
BufferedReader in = "Hello, my name is John:";
char c = '*';
String [] words = {"hello","john"};
期望的输出:
BufferedWriter out = "*Hello*, my name is *John*:";
实际输出:
BufferedWriter out = "*hello*, my name is *john*";
代码:
public void replaceString(BufferedReader in, BufferedWriter out, char c, String[] words){
String line_in = in.readLine();
while (line_in != null) {
for (int j = 0; j < words.length; j++) {
line_in = line_in.replaceAll("(?i)" + words[j], bold + words[j]
+ bold);
}
out.write(line_in);
out.newLine();
line_in = in.readLine();
}
}
使用
line_in.replaceAll("(?i)(" + words[j] + ")", bold + "" + bold);
// \________________/ \/
// capture word reference it