Search
 
SCRIPT & CODE EXAMPLE
 

CPP

c++ get last character of string

// Example
YourStr.substr(YourStr.length() - 1)

// Syntax
std::string YourStr = "abcdef";
std::cout << YourStr.substr(YourStr.length() - 1) << "
"; // OUTPUT: f
Comment

find last occurrence of character in string c++

auto find_char = 'a'
size_t last_occurence_index = str.find_last_of(find_char);
Comment

how to find last character of string in c++

String[strlen(String) - 1];
Comment

c++ string find last number

//Example
string str = "sdfsd34";

//Find the first first number and then all the number after
str.substr(str.find_first_of("0123456789"))

//Find the last number
size_t last_index = str.find_last_not_of("0123456789");
string result = str.substr(last_index + 1);
Comment

PREVIOUS NEXT
Code Example
Cpp :: create n threads cpp 
Cpp :: c++ parse int 
Cpp :: add partition mysql 
Cpp :: cpp rand 
Cpp :: cpp float to int 
Cpp :: unclebigbay 
Cpp :: point is on line 
Cpp :: c++ check if string contains non alphanumeric 
Cpp :: declare dynamic array c++ 
Cpp :: how to get last element of set in c++ 
Cpp :: c++ read integers from file 
Cpp :: lopping over an array c++ 
Cpp :: static_cast c++ 
Cpp :: kruskal in c++ 
Cpp :: bash test empty directory 
Cpp :: c++ switch string 
Cpp :: convert int to enum c++ 
Cpp :: 2d vector cpp 
Cpp :: chrono library c++ 
Cpp :: access part of string in c++ 
Cpp :: c++ cin operator 
Cpp :: what is the associative property of an operator 
Cpp :: How to reverse a string in c++ using reverse function 
Cpp :: c++ simple projects 
Cpp :: C++ press enter to continue function 
Cpp :: C++ cin cout 
Cpp :: c++ clear char array 
Cpp :: upcasting in c++ 
Cpp :: indexing strings in c++ 
Cpp :: int to hexadecimal in c++ 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =