Udostępnij za pośrednictwem


basic_string::substr

Kopiuje podciągu najwyżej pewna liczba znaków z ciągu rozpoczynającego się od określonego położenia.

basic_string<CharType, Traits, Allocator> substr(
    size_type _Off = 0,
    size_type _Count = npos
) const;

Parametry

  • _Off
    Indeks lokalizowanie elementu w pozycji, z której dokonywane jest kopia ciąg, wartość domyślną 0.

  • _Count
    Liczba znaków, które mają być kopiowane, jeśli są obecne.

Wartość zwracana

Obiekt podciągu jest kopia elementów operand ciąg począwszy od pozycji określonej w pierwszym argumencie.

Przykład

// basic_string_substr.cpp
// compile with: /EHsc
#include <string>
#include <iostream>

int main( ) 
{
   using namespace std;

   string  str1 ("Heterological paradoxes are persistent.");
   cout << "The original string str1 is: \n " << str1
        << endl << endl;

   basic_string <char> str2 = str1.substr ( 6 , 7 );
   cout << "The substring str1 copied is: " << str2
        << endl << endl;
   
   basic_string <char> str3 = str1.substr (  );
   cout << "The default substring str3 is: \n " << str3
        <<  "\n which is the entire original string." << endl;
}
  
  
  

Wymagania

Nagłówek: <string>

Obszar nazw: std

Zobacz też

Informacje

basic_string Class