gpt4 book ai didi

java - 从字符串java中提取日期

转载 作者:太空宇宙 更新时间:2023-11-04 08:08:52 25 4
gpt4 key购买 nike

我有一个包含多个日期的字符串,例如:

[20-Jul-2012 5:11:36,670 UTC PM, 20-Jul-2012 5:11:36,683 UTC PM]

如何读取该字符串并提取每个日期?我正在使用 SimpleDateFormat 类创建正则表达式。

SimpleDateFormat format2 = new SimpleDateFormat("dd-MMM-yyyy HH:mm:ss,SSS z a");

我已经尝试过:

我刚刚做了,为了获得第一个,它改变了格式和时区:

ParsePosition parsePos = new ParsePosition(1);
SimpleDateFormat format2 = new SimpleDateFormat("dd-MMM-yyyy HH:mm:ss,SSS z a");
System.out.println(format2.parse(entry.getValue().toString(), parsePos)) ;

输出:2012 年 7 月 20 日星期五 06:11:36 BST

最佳答案

你可以尝试:

 parsePos = new ParsePosition(1);
while((date = format2.parse(yourString, parsePos)!=null){
//use date
}

关于java - 从字符串java中提取日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11599591/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com