Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
Home » U++ Library support » U++ Core » Can we get a Join that uses WString?
Can we get a Join that uses WString? [message #16239] Tue, 03 June 2008 16:23 Go to previous message
cbpporter is currently offline  cbpporter
Messages: 1401
Registered: September 2007
Ultimate Contributor
Like this one:
WString Join(const Vector<WString>& im, const WString& delim) {
	WString r;
	for(int i = 0; i < im.GetCount(); i++) {
		if(i) r.Cat(delim);
		r.Cat(im[i]);
	}
	return r;
}
 
Read Message
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: Suggest Xmlize support for Value
Next Topic: how can i use iterators with NTL?
Goto Forum:
  


Current Time: Thu May 09 11:48:30 CEST 2024

Total time taken to generate the page: 0.02544 seconds