删除字符串的最后两个字符
如何删除简单字符串的最后两个字符?05
简单:
"apple car 05"
法典
String[] lineSplitted = line.split(":");
String stopName = lineSplitted[0];
String stop = stopName.substring(0, stopName.length() - 1);
String stopEnd = stopName.substring(0, stop.length() - 1);
拆分 “:” 之前的原始行
apple car 04:48 05:18 05:46 06:16 06:46 07:16 07:46 16:46 17:16 17:46 18:16 18:46 19:16