如果字符串取自 Visual C++ 中的文本框,则字符串到整数类型转换使用 Visual Studion Windows 窗体
如果我在文本框中输入了数值,我需要代码将字符串类型数据转换为整数类型数据。 我正在使用 Visual C++ Windows Forms 和 Visual Studio
i need the code to convert the string type data into integer type data if i have entered a numerical value in the text box.
i am using visual c++ windows forms and the visual studio
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我想他想要的是:
I think what he wanted was:
如果它确实是 Windows 窗体(即 C++/CLI),则只是
Int32::Parse
或Int32::TryParse
,就像任何其他 .NET 语言。If it's really Windows Forms (i.e. C++/CLI) it's just
Int32::Parse
orInt32::TryParse
, just like in any other .NET language.假设您在
std::string
实例中有变量,您可以使用流来执行此操作,如下所示:Assuming that you have the variable in a
std::string
instance, you can use streams to do it like this:只要您可以访问文本框中的原始字符数据,您就可以简单地使用 <代码>atoi
As long as you can access the raw character data in the text box you can simply use
atoi