This chapter is about handling textual data much more effectively and safely than the mechanism provided by a C-style string stored in an array of char elements:
-
How to create variables of type string
-
What operations are available with objects of type string and how you use them
-
How to chain together various bits and pieces to form one single string
-
How you can search a string for a specific character or substring
-
How you ...