示例#1
0
bool CPrsBDF::RemoveLeadingSpace( CStr &roStr )
{
	static const char *acSpace_ = " \t";
	int iPos = roStr.FindVecInv( 0, acSpace_ );
	if( iPos >= 0 )
	{
		roStr.Del( 0, iPos );
		return true;
	}
	return false;
}