我正在尝试编辑matlab文件并在某些特定行中替换一些编码部分init。但是,使用下面的格式进行更改它根本不会更改行上下文。 (它将打印相同的旧行)。知道我做错了什么吗? 'replaceAll'不适合用行中的其他单词替换某些单词吗?
提前致谢。
try {
PrintWriter out = new PrintWriter(new FileWriter(filenew, true));
Scanner scanner = new Scanner(file);
while (scanner.hasNextLine()) {
String line = scanner.nextLine();
if (line.contains("stream.Values(strmatch('Test',stream.Components,'exact'))") {
String newline = line.replaceAll("stream.Values(strmatch('Test',stream.Components,'exact'))", "New Data");
out.println(newline);
System.out.println(newline);
} else {
out.write(line);
out.write("\n");
}
} // while loop
out.flush();
out.close();
scanner.close();
} catch (IOException e) {
e.printStackTrace();
}
答案 0 :(得分:5)
replaceAll
上的String
方法将正则表达式作为参数,在正则表达式中,某些字符具有特殊含义,例如表达式中的括号。
只需使用replace
方法,即使用文字字符串:
String newline = line.replace("stream.Values(strmatch('Test',stream.Components,'exact'))", "New Data");
不要对方法的名称感到困惑 - replace
和replaceAll
之间的区别不在于它们替换了多少次,但不同之处在于第一个采用文字字符串第二个采用正则表达式。它在Javadoc中:
替换此字符串中与文字目标匹配的每个子字符串 具有指定文字替换序列的序列。
public String replace(CharSequence target, CharSequence replacement) {