首頁  >  文章  >  後端開發  >  C# 程式尋找字串中的所有子字串

C# 程式尋找字串中的所有子字串

WBOY
WBOY轉載
2023-09-09 18:57:02819瀏覽

C# 程序查找字符串中的所有子字符串

使用 C# 中的 substring() 方法來尋找字串中的所有子字串。

假設我們的字串是-

Xyz

循環遍歷字串的長度並從字串的開頭到結尾使用Substring 函數-

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

以上是C# 程式尋找字串中的所有子字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除