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

ค้นหาสตริงย่อยทั้งหมดในสตริงโดยใช้ C #


ใช้เมธอด substring() ใน C# เพื่อค้นหาสตริงย่อยทั้งหมดในสตริง

สมมติว่าสตริงของเราคือ −

pqr

วนซ้ำความยาวของสตริงและใช้ฟังก์ชันสตริงย่อยตั้งแต่ต้นจนจบสตริง -

for (int start = 0; start <= str.Length - i; start++) {
   string substr = str.Substring(start, i);
   Console.WriteLine(substr);
}

ต่อไปนี้เป็นโปรแกรม C# เพื่อค้นหาสตริงย่อยทั้งหมดในสตริง -

ตัวอย่าง

using System;

class Demo {
   static void Main() {
      string str = "pqr";

      for (int i = 1; i < str.Length; i++) {
         for (int start = 0; start <= str.Length - i; start++) {
            string substr = str.Substring(start, i);
            Console.WriteLine(substr);
         }
      }
   }
}

ผลลัพธ์

p
q
r
pq
qr