mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
including replacement of todate and tointerval, use of third person conjugation and addition/fix of examples
14 lines
658 B
Plaintext
14 lines
658 B
Plaintext
{
|
|
"name": "to_date",
|
|
"type": "function",
|
|
"description": "Converts a string into a date object. An optional format string can be provided to parse the string; see <a href='https://doc.qt.io/qt-5/qdate.html#fromString-1'>QDate::fromString</a> for additional documentation on the format.",
|
|
"arguments": [
|
|
{"arg":"string","description":"string representing a date value"},
|
|
{"arg":"format","optional":true,"description":"format used to convert the string into a date"}
|
|
],
|
|
"examples": [
|
|
{ "expression":"to_date('2012-05-04')", "returns":"2012-05-04"},
|
|
{ "expression":"to_date('June 29, 2019','MMMM d, yyyy')", "returns":"2019-06-29"}
|
|
]
|
|
}
|