void clear();
Removes all characters from the string as if by executing erase(begin(), end()). The allocated memory will not be released, effectively leaving the capacity of the string unchanged.
All pointers, references, and iterators are invalidated.
Parameters
(none).
Return value
(none).
Notes
Unlike for std::vector::clear, the C++ standard does not explicitly require that capacity is unchanged by this function, but existing implementations do not change capacity.
Excepti