%dw 2.0
import * from dw::util::Coercions
output application/dw
---
{
a: toDate("2015-10-01"),
b: toDate("2003/10/01","uuuu/MM/dd")
}
DataWeave
toDate
toDate(str: String, format: String | Null = null, locale: String | Null = null): Date
Transforms a String
value into a Date
value
and accepts a format and locale.
Introduced in DataWeave version 2.4.0.
Parameters
Name | Description |
---|---|
|
The |
|
The formatting to use on the |
|
Optional ISO 3166 country code to use, such as |
Example
This example shows how toDate
behaves with different inputs.
It produces output in the application/dw
format.
Source
Output
{
a: |2015-10-01|,
b: |2003-10-01| as Date {format: "uuuu/MM/dd"}
}
DataWeave