Text substitution Removes leading and trailing whitespce from this string. If no whitespace exists within this string, it is unchanged Arguments: None
| Return Type | Function name | Arguments |
|---|---|---|
| hzString& | hzString::TopAndTail | (void) |
Declared in file: hzString.h
Defined in file : hzString.cpp
Function Logic:
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 ;
}