char *str="字符串"
DWORD i=0,c=0;
char str2[1024];
bool X=false;
while(str[i]!=0){
if(str[i]=='/'&&str[i+1]=='<')X=true;
else if(str[i]=='<'&&str[i+1]=='\')X=false;
if(X){i++;continue;}
str2[c++]=str[i++];
}
str2[c]=0;
printf("sou:%s\nout:%s",str,str2);
过滤\<<\,看看别人有没有更好的办法