【发布时间】:2016-04-05 15:29:53
【问题描述】:
我正在尝试计算程序在文本文档中找到的子字符串的数量。文本文档:
# Data Value 0:
dataValue(0) {
x: -3
y: +9
width: 68
height: 25
}
在我的程序中,我试图打印 'dataValue(' 出现的次数。我遇到了括号问题。根据我在寻找解决方案时发现的内容,我必须转义括号。这是正确吗?但是,我发现当我这样做时,程序将其解释为 'dataValue\(' 而不是 'dataValue('。结果,找不到匹配项。我可以解决这个问题吗?如果是这样,任何帮助都会不胜感激。
主要方法:
static String fileContent = "";
public static void main(String args[]) {
fileContent = getFileContent("/Users/Rane/Desktop/search.txt");
System.out.println(countSubstring(fileContent, "dataValue\\("));
}
getFileContent() 方法:
public static String getFileContent(String filePath) {
File textFile = new File(filePath);
BufferedReader reader = null;
String content = "";
String currentLine = "";
if(textFile.exists()) {
try {
reader = new BufferedReader(new FileReader(textFile));
currentLine = reader.readLine();
while(currentLine != null) {
content = content + currentLine + "\n";;
currentLine = reader.readLine();
}
} catch(Exception ext) {
ext.printStackTrace();
} finally {
try {
reader.close();
} catch(Exception ext) {
ext.printStackTrace();
}
}
} else {
System.out.println("[WARNING]: Text file was not found at: " + filePath);
}
return content;
}
countSubstring() 方法:
static int countSubstring(String search, String substring) {
int occurrences = 0;
System.out.println(substring);
search = search.toLowerCase();
substring = substring.toLowerCase();
while(search.indexOf(substring) > -1) {
search = search.replaceFirst(substring, "");
occurrences ++;
}
return occurrences;
}
控制台输出:
dataValue\(
0
提前致谢!
【问题讨论】: