将dateTime字符串转换为dateTime

时间:2015-06-30 21:34:22

标签: date datetime xquery oracle-service-bus

我的集成源是将日期时间发送为07/01/2015 23:59:00 UTC,并期望输出为2015-07-01T23:59:00-00:00

在Oracle Service Bus中,我使用了函数fn-bea:dateTime-from-string-with-format("MM/dd/yyyy HH:mm:ss Z,data($products/startDate)),输出是2015-07-01T23:59:00Z。

是否有内置函数来获取上述时间模式。

1 个答案:

答案 0 :(得分:2)

format-dateTime($dateTime, $pattern)与匹配的日期图片字符串一起使用。例如:

format-dateTime(current-dateTime(), "[Y0001]-[M01]-[D01]T[H01]:[m01]:[s01][Z]")

输出(对于我当前的时间和时区):

2015-06-30T23:45:51+02:00