Text substitution Removes leading and trailing whitespce from this string. If no whitespace exists within this string, it is unchanged Arguments: None

Return TypeFunction nameArguments
hzString&hzString::TopAndTail(void)

Declared in file: hzString.h
Defined in file : hzString.cpp

Function Logic:

0:START 1:items items 2:Return *this

Function body:

hzString& hzString::TopAndTail (void)
{
   //  Text substitution
   //  
   //  Removes leading and trailing whitespce from this string. If no whitespace exists within this string, it is unchanged
   //  
   //  Arguments: None
   //  Returns: Reference to this string in all cases
   _hzfunc("hzString::TopAndTail") ;
   DelWhiteLead() ;
   DelWhiteTrail() ;
   return *this ;
}