Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/string/basic string/substr"

From cppreference.com
< cpp‎ | string‎ | basic string
m (Text replace - "/sidebar" to "/navbar")
m (constexpr since-ification)
 
(34 intermediate revisions by 21 users not shown)
Line 1: Line 1:
{{cpp/string/basic_string/title | substr}}
+
{{cpp/string/basic_string/title|substr}}
 
{{cpp/string/basic_string/navbar}}
 
{{cpp/string/basic_string/navbar}}
{{ddcl | 1=
+
{{dcl begin}}
basic_string substr( size_type pos = 0,
+
{{dcl rev multi|num=1|until1=c++23|notes1={{mark constexpr since c++20}}|dcl1=
                    size_type count = npos );
+
basic_string substr( size_type pos = 0, size_type count = npos ) const;
 +
|dcl2=
 +
constexpr basic_string
 +
    substr( size_type pos = 0, size_type count = npos ) const&;
 
}}
 
}}
 +
{{dcl|num=2|since=c++23|1=
 +
constexpr basic_string substr( size_type pos = 0, size_type count = npos ) &&;
 +
}}
 +
{{dcl end}}
 +
 +
Returns a substring {{range|pos|pos + count}}. If the requested substring extends past the end of the string, i.e. the {{c|count}} is greater than {{c|size() - pos}} (e.g. if {{c|1=count == npos}}), the returned substring is {{range/core|{{c|pos}}|{{rlpf|size}}}}.
 +
 +
@1@ Equivalent to {{c|return basic_string(*this, pos, count);}}.
  
Returns a substring {{tt|[pos, pos+count)}}. If the requested substring lasts past the end of the string, or if {{c|1=count == npos}}, the returned substring is {{tt|[pos, size())}}.  
+
@2@ Equivalent to {{c|return basic_string(std::move(*this), pos, count);}}.
  
 
===Parameters===
 
===Parameters===
{{param list begin}}
+
{{par begin}}
{{param list item | pos | position of the first character to include}}
+
{{par|pos|position of the first character to include}}
{{param list item | count | length of the substring}}
+
{{par|count|length of the substring}}
{{param list end}}  
+
{{par end}}
  
 
===Return value===
 
===Return value===
String containing the substring {{tt|[pos, pos+count)}}.
+
String containing the substring {{range|pos|pos + count}} or {{range/core|{{c|pos}}|{{rlpf|size}}}}.
  
 
===Exceptions===
 
===Exceptions===
{{c|std::out_of_range}} if {{c|pos > size()}}.
+
{{lc|std::out_of_range}} if {{c|pos > size()}}.
 +
 
 +
{{cpp/strong exception safety guarantee|plural=yes}}
  
 
===Complexity===
 
===Complexity===
Linear in {{tt|count}}
+
Linear in {{c|count}}.
 +
 
 +
===Notes===
 +
The allocator of the returned string is default-constructed: the new allocator might ''not'' be a copy of {{rlpf|get_allocator}}.
  
 
===Example===
 
===Example===
 
{{example
 
{{example
| code=
+
|code=
#include <string>
+
 
#include <iostream>
 
#include <iostream>
 +
#include <string>
 
   
 
   
 
int main()
 
int main()
Line 33: Line 49:
 
     std::string a = "0123456789abcdefghij";
 
     std::string a = "0123456789abcdefghij";
 
   
 
   
 +
    // count is npos, returns [pos, size())
 
     std::string sub1 = a.substr(10);
 
     std::string sub1 = a.substr(10);
 
     std::cout << sub1 << '\n';
 
     std::cout << sub1 << '\n';
+
   
 +
    // both pos and pos + count are within bounds, returns [pos, pos + count)
 
     std::string sub2 = a.substr(5, 3);
 
     std::string sub2 = a.substr(5, 3);
 
     std::cout << sub2 << '\n';
 
     std::cout << sub2 << '\n';
+
   
     std::string sub3 = a.substr(12, 100);
+
    // pos is within bounds, pos + count is not, returns [pos, size())
     std::cout << sub3 << '\n';
+
     std::string sub4 = a.substr(a.size() - 3, 50);
}
+
    // this is effectively equivalent to
| output=
+
    // std::string sub4 = a.substr(17, 3);
 +
    // since a.size() == 20, pos == a.size() - 3 == 17, and a.size() - pos == 3
 +
   
 +
     std::cout << sub4 << '\n';
 +
 
 +
    try
 +
    {
 +
        // pos is out of bounds, throws
 +
        std::string sub5 = a.substr(a.size() + 3, 50);
 +
        std::cout << sub5 << '\n';
 +
    }
 +
    catch (const std::out_of_range& ex)
 +
    {
 +
        std::cout << ex.what() << '\n';
 +
    }
 +
}
 +
|p=true
 +
|output=
 
abcdefghij
 
abcdefghij
 
567
 
567
cdefghij
+
hij
 +
basic_string::substr: __pos (which is 23) > this->size() (which is 20)
 
}}
 
}}
 +
 +
===Defect reports===
 +
{{dr list begin}}
 +
{{dr list item|wg=lwg|dr=847|std=C++98|before=there was no exception safety guarantee|after=added strong exception safety guarantee}}
 +
{{dr list end}}
  
 
===See also===
 
===See also===
{{dcl list begin}}
+
{{dsc begin}}
{{dcl list template | cpp/string/basic_string/dcl list copy}}
+
{{dsc inc|cpp/string/basic_string/dsc copy}}
{{dcl list end}}
+
{{dsc inc|cpp/string/basic_string/dsc size}}
 +
{{dsc inc|cpp/string/basic_string/dsc find}}
 +
{{dsc inc|cpp/string/basic_string/dsc npos}}
 +
{{dsc inc|cpp/string/basic_string_view/dsc {{SUBPAGENAMEE}}}}
 +
{{dsc end}}
  
[[de:cpp/string/basic string/substr]]
+
{{langlinks|de|es|fr|it|ja|pt|ru|zh}}
[[es:cpp/string/basic string/substr]]
+
[[ja:cpp/string/basic string/substr]]
+
[[pt:cpp/string/basic string/substr]]
+
[[ru:cpp/string/basic string/substr]]
+
[[zh:cpp/string/basic string/substr]]
+

Latest revision as of 04:43, 12 April 2024

 
 
 
std::basic_string
Member functions
Element access
Iterators
Capacity
Modifiers
Search
Operations
basic_string::substr
Constants
Non-member functions
I/O
Comparison
(until C++20)(until C++20)(until C++20)(until C++20)(until C++20)(C++20)
Numeric conversions
(C++11)(C++11)(C++11)
(C++11)(C++11)
(C++11)(C++11)(C++11)
(C++11)
(C++11)
Literals
Helper classes
Deduction guides (C++17)

 
(1)
basic_string substr( size_type pos = 0, size_type count = npos ) const;
(until C++23)
(constexpr since C++20)
constexpr basic_string
    substr( size_type pos = 0, size_type count = npos ) const&;
(since C++23)
constexpr basic_string substr( size_type pos = 0, size_type count = npos ) &&;
(2) (since C++23)

Returns a substring [pospos + count). If the requested substring extends past the end of the string, i.e. the count is greater than size() - pos (e.g. if count == npos), the returned substring is [possize()).

1) Equivalent to return basic_string(*this, pos, count);.
2) Equivalent to return basic_string(std::move(*this), pos, count);.

Contents

[edit] Parameters

pos - position of the first character to include
count - length of the substring

[edit] Return value

String containing the substring [pospos + count) or [possize()).

[edit] Exceptions

std::out_of_range if pos > size().

If an exception is thrown for any reason, these functions have no effect (strong exception safety guarantee).

[edit] Complexity

Linear in count.

[edit] Notes

The allocator of the returned string is default-constructed: the new allocator might not be a copy of get_allocator().

[edit] Example

#include <iostream>
#include <string>
 
int main()
{
    std::string a = "0123456789abcdefghij";
 
    // count is npos, returns [pos, size())
    std::string sub1 = a.substr(10);
    std::cout << sub1 << '\n';
 
    // both pos and pos + count are within bounds, returns [pos, pos + count)
    std::string sub2 = a.substr(5, 3);
    std::cout << sub2 << '\n';
 
    // pos is within bounds, pos + count is not, returns [pos, size())
    std::string sub4 = a.substr(a.size() - 3, 50);
    // this is effectively equivalent to
    // std::string sub4 = a.substr(17, 3);
    // since a.size() == 20, pos == a.size() - 3 == 17, and a.size() - pos == 3
 
    std::cout << sub4 << '\n';
 
    try
    {
        // pos is out of bounds, throws
        std::string sub5 = a.substr(a.size() + 3, 50);
        std::cout << sub5 << '\n';
    }
    catch (const std::out_of_range& ex)
    {
        std::cout << ex.what() << '\n';
    }
}

Possible output:

abcdefghij
567
hij
basic_string::substr: __pos (which is 23) > this->size() (which is 20)

[edit] Defect reports

The following behavior-changing defect reports were applied retroactively to previously published C++ standards.

DR Applied to Behavior as published Correct behavior
LWG 847 C++98 there was no exception safety guarantee added strong exception safety guarantee

[edit] See also

copies characters
(public member function) [edit]
returns the number of characters
(public member function) [edit]
finds the first occurrence of the given substring
(public member function) [edit]
constexpr size_type npos [static] the special value size_type(-1), its exact meaning depends on the context[edit]
returns a substring
(public member function of std::basic_string_view<CharT,Traits>) [edit]