Como encontrar uma string em C++ em C

Jinku Hu 12 outubro 2023
  1. Utilize o método find para encontrar um substrato em uma string em C++
  2. Utilize o método rfind para encontrar uma string em C++
Como encontrar uma string em C++ em C

Este artigo demonstra métodos para encontrar um determinado substrato em uma string em C++.

Utilize o método find para encontrar um substrato em uma string em C++

A maneira mais simples de resolver a questão é a função find, que é um método string construído, e toma outro objeto string como argumento.

#include <iostream>
#include <string>

using std::cin;
using std::cout;
using std::endl using std::string;

int main() {
  string str1 = "this is random string oiwao2j3";
  string str2 = "oiwao2j3";
  string str3 = "random s tring";

  str1.find(str2) != string::npos
      ? cout << "str1 contains str2" << endl
      : cout << "str1 does not contain str3" << endl;

  str1.find(str3) != string::npos
      ? cout << "str1 contains str3" << endl
      : cout << "str1 does not contain str3" << endl;

  return EXIT_SUCCESS;
}

Resultado:

str1 contains str2
str1 does not contain str3

Alternativamente, você pode utilizar a função find para comparar intervalos de caracteres específicos em duas strings. Para fazer isso, você deve passar a posição inicial e o comprimento do intervalo como argumentos para o método find:

#include <iostream>
#include <string>

using std::cin;
using std::cout;
using std::endl using std::string;
using std::stoi;

int main() {
  string str1 = "this is random string oiwao2j3";
  string str3 = "random s tring";
  constexpr int length = 6;
  constexpr int pos = 0;

  str1.find(str3.c_str(), pos, length) != string::npos
      ? cout << length << " chars match from pos " << pos << endl
      : cout << "no match!" << endl;

  return EXIT_SUCCESS;
}

Resultado:

6 chars match from pos 0

Utilize o método rfind para encontrar uma string em C++

O método rfind tem uma estrutura semelhante à do find. Podemos utilizar o rfind para encontrar o último substrato ou especificar uma certa faixa para combiná-lo com o substrato dado.

#include <iostream>
#include <string>

using std::cin;
using std::cout;
using std::endl using std::string;
using std::stoi;

int main() {
  string str1 = "this is random string oiwao2j3";
  string str2 = "oiwao2j3";

  str1.rfind(str2) != string::npos
      ? cout << "last occurrence of str3 starts at pos " << str1.rfind(str2)
             << endl
      : cout << "no match!" << endl;

  return EXIT_SUCCESS;
}

Resultado:

last occurrence of str3 starts at pos 22
Autor: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.

LinkedIn Facebook

Artigo relacionado - C++ String