$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-users] date-time separator
From: Conoscenza Silente (abruzzoforteegentile_at_[hidden])
Date: 2010-07-15 07:16:54
H all
I am using posix time to print the current timestamp into a string.
boost::posix_time::ptime now(
boost::posix_time::microsec_clock::local_time() );
std::string nowString = boost::posix_time::to_iso_extended_string( now );
The output is the following being T the date-time separator
2002-01-31T10:00:01,123456789
Is there any way to change the 'T' char separator with another
character or string?
I need a space instead of a 'T'
Thanks
AFG