• Javascript
  • Python
  • Go

String to Lower/Upper in C++

One of the most basic tasks that a programmer must do is manipulate strings. This can involve tasks such as changing the case of a string, f...

One of the most basic tasks that a programmer must do is manipulate strings. This can involve tasks such as changing the case of a string, finding substrings, or comparing strings. In this article, we will focus on one specific task: converting a string to either all lowercase or all uppercase in C++.

Before we dive into the code, let's first understand why this task is important. In many cases, strings entered by users may not follow a consistent case. For example, a user may enter their name as "John" or "JOHN". In order to ensure consistency and avoid errors, it is necessary to convert all strings to a standard case.

To convert a string to lowercase in C++, the most straightforward way is to use the built-in function `tolower()`. This function takes a character as an argument and returns its lowercase equivalent. We can use this function in a loop to go through each character in the string and convert it to lowercase.

Let's take a look at an example:

```

#include <iostream>

#include <string>

using namespace std;

int main() {

string name = "JOHN";

for (int i = 0; i < name.length(); i++) {

name[i] = tolower(name[i]);

}

cout << name << endl;

return 0;

}

```

The output of this code will be "john". As you can see, we used a for loop to go through each character in the string and passed it to the `tolower()` function. This approach works well for converting a string to lowercase, but what if we want to convert it to uppercase?

To convert a string to uppercase, we can use the built-in function `toupper()`. This function works in the same way as `tolower()`, but it returns the uppercase equivalent of a character. Let's take a look at an example:

```

#include <iostream>

#include <string>

using namespace std;

int main() {

string name = "john";

for (int i = 0; i < name.length(); i++) {

name[i] = toupper(name[i]);

}

cout << name << endl;

return 0;

}

```

The output of this code will be "JOHN". Notice that we used the same approach as before, but this time we used `toupper()` instead of `tolower()`.

It is worth mentioning that both `tolower()` and `toupper()` only work on individual characters. So, if we want to convert an entire string to lowercase or uppercase, we need to use them in a loop like we did in the examples above.

Another thing to keep in mind is that these functions only work for ASCII characters. If our string contains non-ASCII characters, such as accented letters or symbols, they will not be converted to lowercase or uppercase.

In cases where we need to compare strings, it is important to note that the `tolower()` and `toupper()` functions do not modify the original string. Instead, they return the converted character, so we need to assign the result back to the string.

For example:

```

string name = "John";

cout << tolower(name[0]) << endl; // Output: j

cout << name << endl; // Output: John

```

To summarize, converting a string to lowercase or uppercase in C++ is a simple task that can be accomplished using the `tolower()` and `toupper()` functions. These functions are useful for ensuring consistency in strings and avoiding errors in string comparisons. However, it is important to keep in mind their limitations when dealing with non-ASCII characters.

Related Articles

std::wstring length

The std::wstring length is an important concept in the world of programming. It refers to the length or size of a wide string object in the ...