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

using System;class Demo {static void Main() {string str = xyz;for (int i = 1; i str.Length; i++) {

编程学习网为您整理以下代码实例,主要实现: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);
         }
      }
   }
}

本文标题为:C#查找字符串中的所有子字符串

基础教程推荐