16,548
社区成员




CString str = "data21";
int index = str.GetLength() - 1;
while( index >= 0 && '0' <= str.GetAt(index) <= '9' )
{
index--;
}
CString str = "data21";
int index = str.GetLength() - 1;
while( index >= 0 && ('0' <= str.GetAt(index) && str.GetAt(index)<= '9') )
{
index--;
}
index++;