Re: [OFF] Convert int to ustring
- From: Vinzenz 'evilissimo' Feenstra <mailinglist evilissimo-softdev de>
- To: Jupercio Juliano <jupercio yahoo com br>
- Cc: gtkmm-list gnome org
- Subject: Re: [OFF] Convert int to ustring
- Date: Sun, 30 Oct 2005 01:56:10 +0200
#include <sstream>
int num = 1000;
Glib::ustring str;
std::stringstream strstr;
strstr << num;
strstr >> str;
Now str contains a string "1000"
Jupercio Juliano schrieb:
Hi all.
Sorry for the off and the newbie question, but I need to know how
to convert an int to ustring.
Thanks for any help.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]