Biblioteca C ++ String - find_first_of

Descrição

Ele procura na string o primeiro caractere que corresponda a qualquer um dos caracteres especificados em seus argumentos.

Declaração

A seguir está a declaração para std :: string :: find_first_of.

size_t find_first_of (const string& str, size_t pos = 0) const;

C ++ 11

size_t find_first_of (const string& str, size_t pos = 0) const noexcept;

C ++ 14

size_t find_first_of (const string& str, size_t pos = 0) const noexcept;

Parâmetros

  • str - É um objeto string.

  • len - É usado para copiar os personagens.

  • pos - Posição do primeiro caractere a ser copiado.

Valor de retorno

Nenhum

Exceções

se uma exceção é lançada, não há mudanças na string.

Exemplo

No exemplo abaixo para std :: string :: find_first_of.

#include <iostream>
#include <string>
#include <cstddef>

int main () {
   std::string str ("It replaces the vowels in this sentence by asterisks.");
   std::size_t found = str.find_first_of("aeiou");
   while (found!=std::string::npos) {
      str[found]='*';
      found=str.find_first_of("aeiou",found+1);
   }

   std::cout << str << '\n';

   return 0;
}

O exemplo de saída deve ser assim -

It r*pl*c*s th* v*w*ls *n th*s s*nt*nc* by *st*r*sks.