我有一个 String Split() 包含两个字符串:一个和两个。我将它添加到链接列表。现在我需要得到一个的第一个元素。
String split() {
one = "";
two = "";
int index = tableFields.indexOf("(");
if (index > -1){
one = tableFields.substring(0, index);
two = tableFields.substring(index + 1,
tableFields.length() - 1);
return "`" + one + "`" + " "+ two;
}
else {
return "";
}
}
void readTextFile() {
String line;
while (FileReaderScanner.hasNextLine()) {
fieldlist.add(split()); }
}