Hi,
Using the boost library how would I convert a date object:
date d(2010,10,01);
to a string with the format: DD-mmm-YYYY, so that variable d would become "01-Oct-2010".
Now there are number of functions for converting a date object to a string such as
std::string to_simple_string(date d)
which returns a string in the format YYYY-mmm-DD. But I was unable to find the format I need.
Thanks!