我的日期格式为yyyy-mm-dd
,我将此格式的日期保存为字符串。现在我有了String,我想知道如何在3个不同的String中获得yyyy
,mm
或dd
。
答案 0 :(得分:1)
如果您确定每次都使用相同的格式,您可以对该字符串执行字符串拆分,并从结果数组中获取值。
String date = "2011-06-15";
String[] dates = date.split("-");
String year = dates[0];
String month = dates[1];
String day = dates[2];
如果您的日期以不同的格式结束,则无效。
答案 1 :(得分:0)
data = "2011-06-15";
String[] strings = data.split("-");
// strings[0] = "2011"
// strings[1] = "06"
// strings[2] = "15"