CString Mid( int nFirst ) const
throw( CMemoryException );
CString Mid( int nFirst, int nCount ) const
throw( CMemoryException );
nFirst
The zero-based index of the first character in this CString object that is to be included in the extracted substring.
nCount
The number of characters to extract from this CString object. If this parameter is not supplied, then the remainder of the string is extracted.
Extracts a substring of length nCount characters from this CString object, starting at position nFirst (zero-based). The function returns a copy of the extracted substring.
Mid is similar to the Basic MID$ command (except that indexes are zero-based).
A CString object that contains a copy of the specified range of characters.
Note:
The returned CString object may be empty.
CString s( "abcdef" );
ASSERT( s.Mid( 2, 3 ) == "cde" );