Get the last character of a string in C++

A guide on how to retrieve the last character of a string in C++ using methods and syntax from the `string` library. This article helps you understand string manipulation and character access in C++.

In this article, we will learn how to obtain the last character of a string in C++ using the string library. You will learn how to manipulate strings and retrieve the desired character efficiently.

C++ code

#include <iostream>
#include <string>

int main() {
    std::string str = "Hello, world!";
    
    // Get the last character
    char lastChar = str.back();

    std::cout << "The last character of the string is: " << lastChar << std::endl;

    return 0;
}

Detailed explanation

  • #include <iostream>: Library for basic input/output functions.
  • #include <string>: Library providing string handling functions.
  • std::string str = "Hello, world!";: Initializes a string str.
  • char lastChar = str.back();: Uses the back() method of std::string to get the last character.
  • std::cout << ...: Outputs the result to the console.

System Requirements:

  • C++ version: C++11 or later
  • Compiler: GCC, Clang, MSVC, or any compiler that supports C++11 or later

How to install:

No additional installation is needed as both iostream and string are part of the C++ standard library.

Tips:

  • The back() method allows you to directly and efficiently access the last character. However, always check if the string is empty before calling back() to avoid errors.
Tags: C++


Related

Example of Singleton Pattern in C++

This article introduces the Singleton Pattern in C++, including its implementation and application in object management. The Singleton Pattern ensures that a class has only one instance and provides a global access point to it.
JSON Web Token Authentication with C++

This guide provides steps to implement JSON Web Token (JWT) authentication in C++ for user authentication, including how to create and verify tokens using popular C++ libraries.
Example of Object-Oriented Programming (OOP) in C++

This article provides an illustrative example of object-oriented programming (OOP) in C++, covering concepts such as classes, objects, inheritance, and polymorphism.
Updating Multiple Columns in MySQL Using C++

A detailed guide on updating multiple columns in MySQL using C++ with Prepared Statements. This article helps you understand how to use Prepared Statements to update data securely and efficiently.
How to open Notepad using C++

A guide on how to open the Notepad application using C++ on Windows by utilizing the `system()` function. This is a simple method to invoke system applications from a C++ program.
Generate Captcha Using C++

A guide on how to create a Captcha using C++ with graphics libraries to generate random text and images, providing protection against automated attacks for web applications or software.
How to append an Authentication Header Token when POSTing data to an API in C++

A guide on how to pass an authentication token via the Authentication Header when POSTing data to an API using C++. The example utilizes the `libcurl` library to perform HTTP requests with token-based authentication.
All Methods for String Concatenation in C++

This article compiles all methods for string concatenation in C++, helping you understand the different methods from basic to advanced, including using the `+` operator, the `append()` function, and methods from the `string` library.
Convert Unicode Accented Characters to Unaccented in C++

A detailed guide on converting Unicode accented characters to unaccented characters in C++ using the `` library. This article helps you handle Vietnamese text more effectively.
How to automatically log into a website using Selenium with Chrome in C++

A guide on using Selenium with ChromeDriver in C++ to automatically log into a website. The article explains how to set up Selenium and ChromeDriver and the steps to log in to a specific website.

main.add_cart_success