Hello everybody,

OS: WinXP
Compiler: MINGW
QT: 3.4

I save the current Datetime in a String variable:
Qt Code:
  1. QDateTime dt = QDateTime::currentDateTime();
  2. QString datum = dt.toString();
To copy to clipboard, switch view to plain text mode 
My Result: "Do 16. Feb 10:00:59 2006"

I have to remove all "." and ":" from my String. I had a look in the QString class and i found a lot of functions and examples, but not for my case.
Could somebody help me to open my mind?

thanks