7.13. strings are comparable

All the comparison operators that work on ints and doubles also work on strings.

Take a look at the active code below, which checks to see if word is equal to "banana".

The same rules and limitations that apply to the + operator apply to the relational comparison operators. In order to work correctly, at least one of the operands must be a std::string. C strings by themselves are not comparable. These comparisons work because one of the operands is a std::string.

The other comparison operations are useful for putting words in alphabetical order.

The active code below uses comparison operators to determine the ordering of word relative to "banana".

You should be aware, though, that the string class does not handle upper and lower case letters the same way that people do. All the upper case letters come before all the lower case letters. As a result,

Your word, Zebra, comes before banana.

A common way to address this problem is to convert strings to a standard format, like all lower-case, before performing the comparison. The next sections explains how. I will not address the more difficult problem, which is making the program realize that zebras are not fruit.

Sometimes we want to print the result of a comparison operation. When we use cout to print the value, we don’t get what we expect.

Print a simple boolean value resulting from a string comparison.

The bool value is actually getting converted to an integer when processed by the cout class.

In order to get the results we expect, we need to use the input / output manipulation library: iomanip.

The I/O manipluator boolalpha can display the boolean values as the words true or false.

You have attempted of activities on this page