Trova sottostringa in stringa in C++

Jinku Hu 12 ottobre 2023
  1. Usa il metodo find per trovare la sottostringa in una stringa in C++
  2. Usa il metodo rfind per trovare la sottostringa in una stringa in C++
Trova sottostringa in stringa in C++

Questo articolo illustra i metodi per trovare una determinata sottostringa in una stringa in C++.

Usa il metodo find per trovare la sottostringa in una stringa in C++

Il modo più diretto per risolvere il problema è la funzione find, che è un metodo string incorporato, e prende un altro oggetto string come argomento.

#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;
}

Produzione:

str1 contains str2
str1 does not contain str3

In alternativa, puoi utilizzare find per confrontare intervalli di caratteri specifici in due stringhe. Per fare ciò, dovresti passare la posizione iniziale e la lunghezza dell’intervallo come argomenti al metodo 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;
}

Produzione:

6 chars match from pos 0

Usa il metodo rfind per trovare la sottostringa in una stringa in C++

Il metodo rfind ha una struttura simile a find. Possiamo utilizzare rfind per trovare l’ultima sottostringa o specificare un certo intervallo per abbinarlo alla sottostringa data.

#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;
}

Produzione:

last occurrence of str3 starts at pos 22
Autore: 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

Articolo correlato - C++ String