Visual C++ 2010年->窗口形式。如何将字符串转换为int?
嘿!我有文本框,其中包含“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当您使用托管 C++ 时,您可以执行以下操作:
使用您需要的任何内容!
As you're using Managed C++, then you can do this:
Use whatever you need!
您可以使用 c 标准 lib frunction atoi
编辑:哦,您正在使用托管 C++,那么以下两个之一应该可以完成这项工作
请参阅此页面的示例: http://msdn.microsoft.com/en-us/library/b3h1hf19.aspx
you can use c standard lib frunction atoi
Edit: Oh, your are using managed C++, then one of the following two should do the job
Refer to this page with an example: http://msdn.microsoft.com/en-us/library/b3h1hf19.aspx
我用
I use