Total members 11889 |It is currently Fri Mar 29, 2024 8:03 am Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





Strings split using C++
cpp code
#include <iostream>
using std::cout;
using std::endl;

#include <string>
using std::string;

int main()
{
string s1( "AA1234567890asdfasdf" );
string s2( " AAB" );
string s3;

// test string member function substr
cout << "The substring of s1 starting at location 0 for\n"
<< "14 characters, s1.substr(0, 14), is:\n"
<< s1.substr( 0, 14 ) << "\n\n";

return 0;
}

/*
The substring of s1 starting at location 0 for
14 characters, s1.substr(0, 14), is:
AA1234567890as


*/




_________________
Please recommend my post if you found it helpful


Author:
Beginner
User avatar Posts: 95
Have thanks: 2 time
Post new topic Reply to topic  [ 1 post ] 

  Related Posts  to : split string in C++
 String token for string split     -  
 check if string ends with specific sub-string in php     -  
 Splitting a String Based on a Found String     -  
 check if string start with a specific sub-string in PHP     -  
 recursive string reversal- reverse string     -  
 Pad a string to a certain length with another string     -  
 String Formatter     -  
 using of String constructor     -  
 String Sort     -  
 Append string in C++     -  



Topic Tags

C++ Strings
cron





Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com