I am working in C++. I have the following string:
2011-07-01T14:32:39.1846579+02:00
Can someone tell me how can I extract 2011-07-01 14:32 in another string?
|
|
I think that sscanf is what you are looking for : http://www.cplusplus.com/reference/clibrary/cstdio/sscanf/ You can then use |
|||||||
|
|
You may take a look at std::istringstream and its >> operator (not as explicit as sscanf though). |
|||
|
|
|
If you have C++11, the simplest solution would be to use regular
expresssions. It's also possible to use
(You'll probably want better error handling that I've provided.) |
|||
|
|
|
you can use |
|||
|
|