我尝试在文本文件中找到特定的字符串。该文件如下所示:
2, 1, 'Ausbau der techn. 安拉根
2, 2, '扩展 des 安装技术'
2, 3, 'Estensione delle istallazioni tecniche'
我试图找到''符号之间的文字。
//Will be set automaticly after implementation.
int project = 2
int languageInteger = 1
String findings = new File(usedPath)?.eachLine {
it.substring((project+ ", " + languageInteger + ", "))
}
这行不通。我也尝试过 FindAll Closure 或 find。但我犯了一些错误。
我应该怎么做才能找到文本?