Personal tools
You are here: Home Projects C++ Cfront releases Release 3.0.3 source demo string remove1.c
Document Actions

remove1.c

by Michael L Powell last modified 2007-01-26 03:20

Click here to get the file

Size 1.3 kB - File type text/plain

File contents

/*ident	"@(#) @(#)remove1.c	1.1.1.2" */
/******************************************************************************
*
* C++ Standard Library
*
* Copyright (c) 1996  Lucent Technologies.  All Rights Reserved.
*
* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF Lucent Technologies.
* The copyright notice above does not evidence any actual or
* intended publication of such source code.
*
******************************************************************************/

#include <string>
#include <iostream.h>

#if defined(__edg_lucent_41)
using namespace std;
#endif

main() {
	string s1;
	cout << "s1=<" << s1 << ">\n";
	cout << "s1=<>\n";
	string s2 = "abc";
	cout << "s2=<" << s2 << ">\n";
	cout << "s2=<abc>\n";
	string s3("abcdefghi", 5);
	cout << "s3=<" << s3 << ">\n";
	cout << "s3=<abcde>\n";

	s1 = s3;
	cout << "s1=<" << s1 << ">\n";
	cout << "s1=<abcde>\n";

	s1.remove(&s1[2]);
	cout << "s1=<" << s1 << ">\n";
	cout << "s1=<abde>\n";
	
	s1 = s3;
	s1.remove(&s1[1], &s1[3]);
	cout << "s1=<" << s1 << ">\n";
	cout << "s1=<ade>\n";

	s1 = s3;
	s1.remove(3);
	cout << "s1=<" << s1 << ">\n";
	cout << "s1=<abc>\n";

	s1 = s3;
	s1.remove(2, 2);
	cout << "s1=<" << s1 << ">\n";
	cout << "s1=<abe>\n";

	s1 = s3;
	s1.remove(2, 6);
	cout << "s1=<" << s1 << ">\n";
	cout << "s1=<ab>\n";

	return (0);
}
« April 2024 »
Su Mo Tu We Th Fr Sa
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
 

Powered by Plone CMS, the Open Source Content Management System

This site conforms to the following standards: