将 string 转换为 int 并在 C# 中测试成功
如何检查字符串是否可转换为int?
假设我们有“House”、“50”、“Dog”等数据", "45.99",我想知道是否应该只使用 string 还是使用解析后的 int 值。
在 JavaScript 中,我们有这个 parseInt() 函数。 如果字符串无法解析,它将返回NaN。
How can you check whether a string is convertible to an int?
Let's say we have data like "House", "50", "Dog", "45.99", I want to know whether I should just use the string or use the parsed int value instead.
In JavaScript we had this parseInt() function. If the string couldn't be parsed, it would get back NaN.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Int32.TryParse(String, Int32)
- http://msdn.microsoft.com/en-us/library/f02979c7.aspx" rel="noreferrer">http:// /msdn.microsoft.com/en-us/library/f02979c7.aspxInt32.TryParse(String, Int32)
- http://msdn.microsoft.com/en-us/library/f02979c7.aspx难道你不能通过直接在 if 中运行 tryparse 来让它变得更优雅一点吗?
就像这样:
Could you not make it a little more elegant by running the tryparse right into the if?
Like so:
Int.TryParse
Int.TryParse
在搜索结果之一中找到了这一点:我该如何识别字符串是否是数字?
添加这个是因为我之前看到的答案没有用法:
这里
“123”
可以是字符串s =“123”< /code> OP 正在测试,如果发现值
n
是数字,则在调用后将得到一个值 (123
)。found this in one of the search results: How do I identify if a string is a number?
Adding this because the answers i saw before did not have usage:
here
"123"
can be something like strings = "123"
that the OP is testing and the valuen
will have a value (123
) after the call if it is found to be numeric.