std::basic_stringstream<CharT,Traits,Allocator>::view
From cppreference.com
 
 
 < cpp | io | basic stringstream 
 
 
 C++ 
 Feature test macros (C++20)
 Concepts library (C++20)
 Metaprogramming library (C++11)
 Ranges library (C++20)
 Filesystem library (C++17)
 Concurrency support library (C++11)
 Execution control library (C++26)
Input/output library 
 
 
 
 
 
 
 
 
 
 
 
 
 Print functions (C++23)
 Buffers
(C++23)
(C++98/26*)
(C++20)
 Streams
 Abstractions
 File I/O
 String I/O
 Array I/O
(C++23)
(C++23)
(C++23)
(C++98/26*)
(C++98/26*)
(C++98/26*)
 Synchronized Output
(C++20)
 Types
 Error category interface
(C++11)
(C++11)
std::basic_stringstream 
 
 
 
 Member functions
(C++11)
 String operations
basic_stringstream::view
(C++20)
 Non-member functions
(C++11)
std::basic_string_view <CharT, Traits> view() const noexcept;
 
 (since C++20) 
Obtains a std::basic_string_view over the underlying string object. Equivalent to return rdbuf()->view();.
Contents
[edit] Parameters
(none)
[edit] Return value
A std::basic_string_view over the underlying string object.
[edit] Example
Run this code
#include <iostream> #include <sstream> int main() { // input/output stream std::stringstream buf1; buf1 << 69; int n = 0; buf1 >> n; std::cout << "1) buf1 = [" << buf1.view() << "], n = " << n << '\n'; // output stream in append mode std::ostringstream buf2("test", std::ios_base::ate ); buf2 << '1'; std::cout << "2) buf2 = [" << buf2.view() << "]\n"; // input stream std::istringstream inbuf("-42"); inbuf >> n; std::cout << "3) inbuf = [" << inbuf.view() << "], n = " << n << '\n'; }
Output:
1) buf1 = [69], n = 69 2) buf2 = [test1] 3) inbuf = [-42], n = -42