[#BloombergLP-bdlt-FixUtil-parse-06] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlt.adoc[bdlt]::xref:BloombergLP/bdlt/FixUtil.adoc[FixUtil]::parse :relfileprefix: ../../../ :mrdocs: Parse the specified FIX `string` as a `Date` value, and load the value into the specified `result`. Return 0 on success, and a non‐zero value (with no effect) otherwise. `string` is assumed to be of the form: ` YYYYMMDD{(+|‐)hh{:mm}|Z} ` _Exactly_ `string.length()` characters are parsed; parsing will fail if a proper prefix of `string` matches the expected format, but the entire `string.length()` characters do not. If the optional timezone offset is present in `string`, it is parsed but ignored. The behavior is undefined unless `string.data()` is non‐null. == Synopsis Declared in `<bdlt_fixutil.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static int parse( xref:BloombergLP/bdlt/Date.adoc[Date]* result, std::string_view const& string); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#