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

Char.IsDigit() วิธีการใน C #


วิธี Char.IsDigit() ใน C# ระบุว่าอักขระ Unicode ที่ระบุถูกจัดประเภทเป็นตัวเลขทศนิยมหรือไม่

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

public static bool IsDigit (char ch);

ด้านบน พารามิเตอร์ ch คืออักขระ Unicode ที่จะประเมิน

ตัวอย่าง

ให้เราดูตัวอย่างการใช้งานวิธี Char.IsDigit() -

using System;
public class Demo {
   public static void Main(){
      bool res;
      char val = 'g';
      Console.WriteLine("Value = "+val);
      res = Char.IsDigit(val);
      Console.WriteLine("Is the value a digit? = "+res);
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Value = g
Is the value a digit? = False

ตัวอย่าง

เรามาดูตัวอย่างอื่นกัน −

using System;
public class Demo {
   public static void Main(){
      bool res;
      char val = '2';
      Console.WriteLine("Value = "+val);
      res = Char.IsDigit(val);
      Console.WriteLine("Is the value a digit? = "+res);
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Value = 2
Is the value a digit? = True