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

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


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

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

Xyz

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

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 = "xyz";
      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);
         }
      }
   }
}

ผลลัพธ์

x
y
z
xy
yz