我有以下形式的输入字符串数组 -
stringArray1 = {"Vidya", "Balan", "born", "1", "January","1978","is","an","Indian", "actress."}
stringArray2 = {"President", "Franklin", "D.", "Roosevelt","to","proclaim","December", "7,", "1941,","'a","date","which", "will","live", "in","infamy'"}
stringArray3 = {"The", "Academy", "operated", "until","it","was","destroyed", "by", "Lucius", "Cornelius","Sulla","in", "84", "BC"}
我希望能够将以下规则应用于这些字符串数组:
任何出现的日期都应转换为 yyyymmdd 格式的日期和 HH:mm:ss 的时间戳(yyyymmdd HH:mm:ss 的组合)。时区可以忽略。如果缺少任何字段,则应使用以下默认值: • 年份应设置为 1900。 • 月份应为一月 • 日期应为 1 日 • 小时、分钟或秒应为 00。
因此,上述字符串的输出必须是:
stringOutput1 = { "Vidya", "Balan", "born","19780101","is","an", "Indian","actress." }
stringOutput2 = { "President", "Franklin", "D.","Roosevelt","to","proclaim", "19411207,", "'a","date","which", "will", "live", "in", "infamy'"}
stringOutput3 = { "The", "Academy", "operated","until", "it", "was", "destroyed", "by","Lucius","Cornelius", "Sulla", "in","-00840101"}
我尝试为此使用 SimpleDateFormatter,但我认为 SimpleDateFormatter 在没有特定格式的情况下没有这样的功能,而且我实际上对如何找到一个纯 Java 的解决方案来解决这个问题一无所知,有人请帮助我。时间也是如此,也就是说,如果我有一个由日期和时间组合组成的通用字符串,我该如何转换这些字符串。