You now manipulate strings in C++.
string class handles text of any length
Access characters with [] or at()
Use length(), substr(), find() for common operations
Compare strings with == and < Good job. You can now work with text data. Next, you will learn functions to organize and reuse code.