
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
List All Substrings in a Given String Using C#
To list all the substrings, use the Substring method and loop through the length of the string.
Let’s say our string is −
string myStr = "pqrz";
Use nested loop and get the substring in a new string −
for (int i = 1; i < myStr.Length; i++) { for (int start = 0; start <= myStr.Length - i; start++) { // get substrings } }
The following is the complete code −
Example
using System; public class Demo { public static void Main() { string myStr = "pqrz"; for (int i = 1; i < myStr.Length; i++) { for (int start = 0; start <= myStr.Length - i; start++) { string substr = myStr.Substring(start, i); Console.WriteLine(substr); } } } }
Advertisements