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

ระบุว่าอักขระ Unicode ที่ระบุเป็นช่องว่างใน C #


เพื่อระบุว่าอักขระ Unicode ที่ระบุเป็นช่องว่างหรือไม่ โค้ดจะเป็นดังนี้ -

ตัวอย่าง

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

ผลลัพธ์

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

Value =
Is the value whitespace? = True

ตัวอย่าง

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

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

ผลลัพธ์

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

Value = m
Is the value whitespace? = False