Visual C++ 2010年->窗口形式。如何将字符串转换为int?

发布于 2024-10-12 07:20:59 字数 264 浏览 2 评论 0原文

嘿!我有文本框,其中包含“12:30”等文本,并且此代码 textBox ->文字-> ToString() ->; Split(':')[1] 它返回“30”作为字符串。我想将其转换为 Int。如何?我创建了像 Convert::ToInt32() 等函数,但它不适用于我的 c++ (Visual C++ 2010 -> Winfow Form)。请帮助我! (我2天前开始学习c++)

并且我使用托管 C++

Hey! I have textBox with text like "12:30" and this code textBox -> Text -> ToString() -> Split(':')[1] It return "30" as string. And I want convert it to Int. How? I founded function like Convert::ToInt32() etc, but it doesnt work for my c++ (Visual C++ 2010 -> Winfow Form). Help me plz! (I started learn c++ 2 days ago)

And i use Managed C++

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不…忘初心 2024-10-19 07:20:59

当您使用托管 C++ 时,您可以执行以下操作:

double foo = System::Convert::ToDouble("200");
int bar = System::Convert::ToInt32("200");

使用您需要的任何内容!

As you're using Managed C++, then you can do this:

double foo = System::Convert::ToDouble("200");
int bar = System::Convert::ToInt32("200");

Use whatever you need!

愁以何悠 2024-10-19 07:20:59

您可以使用 c 标准 lib frunction atoi

CString s = "30";
int x = atoi( s ); // x is now 30

编辑:哦,您正在使用托管 C++,那么以下两个之一应该可以完成这项工作

System::Convert::ToInt32(str, 10);
System::Int32::Parse(str);

请参阅此页面的示例: http://msdn.microsoft.com/en-us/library/b3h1hf19.aspx

you can use c standard lib frunction atoi

CString s = "30";
int x = atoi( s ); // x is now 30

Edit: Oh, your are using managed C++, then one of the following two should do the job

System::Convert::ToInt32(str, 10);
System::Int32::Parse(str);

Refer to this page with an example: http://msdn.microsoft.com/en-us/library/b3h1hf19.aspx

对风讲故事 2024-10-19 07:20:59

我用

int intVar = Int32::Parse(stringVar);

I use

int intVar = Int32::Parse(stringVar);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文