resize

Syntax:

    #include <string>
    void resize( size_type size, char val = char() );

The function resize() changes the size of the string to size. If val is specified then any newly-created elements will be initialized to have a value of val. This function runs in linear time.

Related Topics: capacity, size