Open In App

Convert String to size_t in C++

Last Updated : 28 Nov, 2022
Comments
Improve
Suggest changes
1 Like
Like
Report

To convert String to size_t  in C++ we will use stringstream, It associates a string object with a stream allowing you to read from the string as if it were a stream (like cin). We must include the stream header file in order to use stringstream. When parsing input, the stringstream class comes in quite handy.

Syntax:

std :: stringstream stream(string_name)

Example: 

Output:

Hello Geek
GeeksforGeeks

Example: 

Output: 

246810

Next Article

Similar Reads