Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Semrush - keyword research tool

Create your online store today with Shopify

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Disclosure: My content contains affiliate links.

43,239 questions

56,142 answers

573 users

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

1 Answer

0 votes
#include <string>
#include <vector>
#include <iostream>

std::vector<std::string> DivideStringIntoEqualParts(const std::string &str, int parts) {
	int length = str.length();

	if (length % parts != 0) {
		std::cout << "No equal parts";
		return std::vector<std::string>();
	}

	int j = 0, part_size = length / parts;

	std::vector<std::string> parts_arr(parts);

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

int main()
{
	std::string str = "c++ java c python c#";
	int parts = 4;

	std::vector<std::string> parts_arr = DivideStringIntoEqualParts(str, parts);

	for (int i = 0; i < parts_arr.size(); i++) {
		std::cout << parts_arr[i] << "\n";
	}
}




/*
run:

c++ j
ava c
 pyth
on c#

*/

 



answered Oct 5, 2022 by avibootz

Related questions

2 answers 196 views
2 answers 222 views
2 answers 255 views
1 answer 193 views
1 answer 194 views
1 answer 172 views
1 answer 181 views
...