U++ framework
Do not panic. Ask here before giving up.

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: 1428
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: Fri May 01 22:58:47 GMT+2 2026

Total time taken to generate the page: 0.00643 seconds