这是我的代码,
public static String set_x_dates()
{
int noRecords = GlobalData.getNoRecords();
int n;
String date = "";
if (noRecords <= 10)
for (n = 0; n < noRecords; n++)
date += Dates[n] + "-" + Month[n] + "|";
else {
for (n = 0; n < noRecords; n++) {
int gap = (int) (noRecords / 10);
date += Dates[n] + "-" + Month[n] + "|";
n++;
if (n != noRecords)
for (; gap > 0; gap--)
date += "|";
}
}
return date;
}
我希望从正在返回的字符串“date”中删除重复的条目。日期[]和月[]是静态int数组。有人能帮助我吗?
我得到的输出是:
25-5|28-5|4-6|8-6|10-6|14-6|17-6|7-7|7-7|7-7|7-7|7-7|7-7|7-7|7-7|7-7|7-7|26-7|26-7|
我想要这个:
25-5|28-5|4-6|8-6|10-6|14-6|17-6|7-7|26-7|