将 string 转换为 int 并在 C# 中测试成功

发布于 2024-07-10 07:00:38 字数 380 浏览 9 评论 0原文

如何检查字符串是否可转换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 技术交流群。

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

发布评论

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

评论(4

半山落雨半山空 2024-07-17 07:00:38

Int32.TryParse(String, Int32) - http://msdn.microsoft.com/en-us/library/f02979c7.aspx" rel="noreferrer">http:// /msdn.microsoft.com/en-us/library/f02979c7.aspx

  bool result = Int32.TryParse(value, out number);
  if (result)
  {
     Console.WriteLine("Converted '{0}' to {1}.", value, number);         
  }

Int32.TryParse(String, Int32) - http://msdn.microsoft.com/en-us/library/f02979c7.aspx

  bool result = Int32.TryParse(value, out number);
  if (result)
  {
     Console.WriteLine("Converted '{0}' to {1}.", value, number);         
  }
2024-07-17 07:00:38

难道你不能通过直接在 if 中运行 tryparse 来让它变得更优雅一点吗?

就像这样:

if (Int32.TryParse(value, out number))     
  Console.WriteLine("Converted '{0}' to {1}.", value, number);

Could you not make it a little more elegant by running the tryparse right into the if?

Like so:

if (Int32.TryParse(value, out number))     
  Console.WriteLine("Converted '{0}' to {1}.", value, number);
﹏雨一样淡蓝的深情 2024-07-17 07:00:38

Int.TryParse

Int.TryParse

宣告ˉ结束 2024-07-17 07:00:38

在搜索结果之一中找到了这一点:我该如何识别字符串是否是数字?

添加这个是因为我之前看到的答案没有用法:

int n;
bool isNumeric = int.TryParse("123", out n);

这里“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:

int n;
bool isNumeric = int.TryParse("123", out n);

here "123" can be something like string s = "123" that the OP is testing and the value n will have a value (123) after the call if it is found to be numeric.

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