Exemple #1
0
static WString sUncomment(const WString& s) 
{
	WString h = s;
	h.Replace("/*", "");
	h.Replace("//", "");
	h.Replace("*/", "");
	return h;
}