Site icon Learn C++

What Is The rfind() Search Method in Modern C++ Software?

How can I find a string in a string in the reverse direction – in other words, by starting to search at the end of the string and working backwards to the start of it? What kind of methods can I use in my C++ software to find a string in a std::string? How can I use rfind() method with strings?

Modern C++ uses Strings, Wide Strings, and Unicode Strings to support worldwide languages. Strings (std::string) uses char as the character type which means they are ASCII chars and they are an instantiation of the basic_string class template. In C++, there are several typedefs for common character types and one of them is std::string types that are defined in header <string>.

strings are the string class for byte characters represented with string and alphanumeric characters are stored and displayed in string forms. In other terms, string stores the alphanumeric text with 1-byte chars called char. Strings are the instantiation of the basic_string class template that uses char as the character type. In modern C++, simply we can define a string as below,

[crayon-66372ed340beb861104883/]

Strings (string) are a class contains arrays of characters with useful methods, and we can access, or modify their characters easily. In C++, while string contents are defined between ” and “, characters are defined between ‘ and ‘.

The string has methods to append, assign, copy, align, replace or operate with other strings. These methods can be used in all string methods with their appropriate syntax. We can find a string in with rfind() method in reverse search direction.

rfind() Method – how to search strings in reverse with the rfind() method in C++

The rfind() method is a String Method that finds a string in its string starting from a reverse direction. There can be a reverse position to start as a second parameter, search begins from this position to the end of string. find() method returns the position of the first character of the found substring. If no such substring is found in that string then it returns the npos of the string (std::string::npos).

Syntax:

[crayon-66372ed340bf4223114127/]

Then, we can find a string in a string by using its rfind() method as given example below.

[crayon-66372ed340bf7904019406/]

Output of this code will print the original string and prints the position if it finds the string as below,

[crayon-66372ed340bf9272685857/]

as you see in this example we found the second “String” that is at the position 17 while find method finds the first String at the position 5. This is a good example how rfind() works in a reverse string search.

rfind() Method – how to search a string in reverse from a given position of the string

The rfind() method is a String Method that finds a string in its string starting from a reverse position, search begins from this position to the front of string. find() method returns the position of the first character of the found substring. If no such substring is found in that string then it returns the npos of the string (std::string::npos).

Syntax:

[crayon-66372ed340bfa056529652/]
[crayon-66372ed340c0d538185253/]

Output of this code will print the original string and prints the position if it finds the string as below,

[crayon-66372ed340c0f842685694/]

As you see we started to search from position 6 and we find the first “String” at position 5

Exit mobile version