我已經寫了一個代碼,它有字符串組成的電子郵件地址,我打算把它放入數組,但總是我得到,
(逗號)。這裏是我的代碼:刪除第一個字符,如果它是使用數組的逗號也
String getEmail = "[email protected],[email protected],[email protected]";
String[] srr = getEmail.split(",");
//String tsd = "";
for (int i = 0; i < srr.length; i++) {
String string = srr[i];
String[] getEmailList = {",\"" + string + "\""};
System.out.print(getEmailList[0]);
}
這是我的輸出
「[email protected]」, 「[email protected]」, 「[email protected]」
逗號先進來,我需要刪除這第一個逗號,請幫我解決這個問題。
使用子(1) – Braj
因爲你在'字符串添加逗號前綴[點] getEmailList = {「,\」「+ string +」\「」};'。 –