Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

วิธีตรวจสอบสตริงสำหรับการแสดงตัวเลขโดยใช้ TryParse ใน C #


ต่อไปนี้เป็นสตริงของเรา -

string myStr = "5";

หากต้องการตรวจสอบว่าข้อความข้างต้นเป็นสตริงที่มีการแสดงตัวเลขหรือไม่ ให้ใช้ TryParse และเรียกใช้

int.TryParse(myStr, out a);

นี่คือรหัสที่สมบูรณ์

ตัวอย่าง

using System.IO;
using System;
class Program {
   static void Main() {
      bool res;
      int a;
      string myStr = "5";
      // checking for valid string representation of a number
      res = int.TryParse(myStr, out a);
      Console.WriteLine(res);
   }
}

ผลลัพธ์

True