How to divide a string into N equal parts with C#

1 Answer

0 votes
using System;

public class Program
{
	private static string[] DivideStringIntoEqualParts(string str, int parts) {
		int length = str.Length;

		if (length % parts != 0) {
			Console.Write("No equal parts");
			return null;
		}

		int j = 0, part_size = length / parts;

		string[] parts_arr = new string[parts];

		for (int i = 0; i < length; i = i + part_size) {
			parts_arr[j] = str.Substring(i, part_size);
			j++;
		}
		
		return parts_arr;
	}

	public static void Main(string[] args)
	{
		string str = "c# java c++ c python";
		int parts = 4;

		string[] parts_arr = DivideStringIntoEqualParts(str, parts);

		for (int i = 0; i < parts_arr.Length; i++) {
			Console.WriteLine(parts_arr[i]);
		}
	}
}





/*
run:
   
c# ja
va c+
+ c p
ython
   
*/

 



answered Oct 4, 2022 by avibootz

Related questions

2 answers 152 views
2 answers 173 views
2 answers 199 views
1 answer 148 views
1 answer 154 views
1 answer 150 views
1 answer 148 views
...