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

จะค้นหาสตริงย่อยจากสตริงใน C # ได้อย่างไร


ตั้งค่าสตริง

string s = "Tom Cruise";

สมมติว่าคุณต้องค้นหาสตริงย่อย “Tom” จากนั้นใช้เมธอดประกอบด้วย()

if (s.Contains("Tom") == true) {
   Console.WriteLine("Substring found!");
}

ต่อไปนี้เป็นรหัสเพื่อเรียนรู้วิธีค้นหาสตริงย่อยจากสตริง -

ตัวอย่าง

using System;

public class Demo {
   public static void Main() {
      string s = "Tom Cruise";

      if (s.Contains("Tom") == true) {
         Console.WriteLine("Substring found!");
      } else {
         Console.WriteLine("Substring not found!");
      }
   }
}

ผลลัพธ์

Substring found!