Java:如何解析字符串?

时间:2016-04-18 23:08:05

标签: java parsing

几个月前刚刚开始编程课程,我正在查看一些评论问题以进行测试。我不确定如何解决这个问题。我们必须格式化几行文字。

所以看起来像这样:2002 / Bourne Identity / Action / 1:58

将看起来像这样:2002年 - Bourne身份行动118分钟

其中有一些,然后我们必须将每个类型的总运行时间加起来。我会在这里使用拆分功能吗?

由于

1 个答案:

答案 0 :(得分:0)

我假设输入数据是4个变量。例如

public String parse(Integer year, String title, String genere, Date duration)

所以你只需要操作这些值。例如

return year + " - " + title + " " + genere + " " + toMinutes(duration) + " minutes"

其中toMinutes(duration)是一个将日期解析为分钟的函数。