Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

cpp string slice

//Time complexity: O(n)

//Auxiliary Space: O(n)

#include <string.h>
#include <iostream>
using namespace std;
 
int main()
{
    // Take any string
    string s1 = "Geeks";
 
    // Copy three characters of s1 (starting
    // from position 1)
    string r = s1.substr(3, 2);
 
 	// Copy substring after pos
	string sub = s.substr(pos + 1);
	
	// Copy substring before pos
    string sub = s.substr(0 , pos);
    
    // prints the result
    cout << "String is: " << r;
 
    return 0;
}
 
PREVIOUS NEXT
Tagged: #cpp #string #slice
ADD COMMENT
Topic
Name
4+5 =