Rogue Wave banner
Previous fileTop of DocumentContentsIndex pageNext file
Essential Tools Module Reference Guide
Rogue Wave web site:  Home Page  |  Main Documentation Page

RWCSubString

Module:  Essential Tools Module   Group:  String Processing Classes


Does not inherit

Local Index

Members

Non-Members

Synopsis

#include <rw/cstring.h>
RWCString s("test string");
s(6,3);     // "tri"

Description

The class RWCSubString allows some subsection of an RWCString to be addressed by defining a starting position and an extent. For example the 7th through the 11th elements, inclusive, would have a starting position of 7 and an extent of 5. The specification of a starting position and extent can also be done in your behalf by such functions as RWCString::strip() or the overloaded function call operator taking a regular expression as an argument. There are no public constructors -- RWCSubStrings are constructed by various functions of the RWCString class and then destroyed immediately.

A zero length substring is one with a defined starting position and an extent of zero. It can be thought of as starting just before the indicated character, but not including it. It can be used as an lvalue. A null substring is also legal and is frequently used to indicate that a requested substring, perhaps through a search, does not exist. A null substring can be detected with member function isNull(). However, it cannot be used as an lvalue.


NOTE -- Member function overloads with std::string will only appear when building on top of the C++ Standard Library.

Persistence

None

Example

Program output:

Assignment Operators

RWCSubString&
operator=(const RWCString&);
RWCSubString&
operator=(const std::string& str);
RWCSubString&
operator=(const RWCSubString&);
RWCSubString&
operator=(const RWCConstSubString&);
RWCSubString&
operator=(const char*);

Indexing Operators

char&
operator[](size_t i);
char
operator[](size_t i) const;
char&
operator()(size_t i);
char
operator()(size_t i) const;

Public Member Functions

bool
isNull() const;
size_t
length() const;
bool
operator!() const;
size_t
start() const;
void
toLower();
void
toUpper();

Global Logical Operators

bool
operator==(const RWCSubString&, const RWCSubString&);
bool
operator==(const RWCString&, const RWCSubString&);
bool
operator==(const RWCSubString&, const RWCString&);
bool
operator==(const char*, const RWCSubString&);
bool
operator==(const RWCSubString&, const char*);
bool
operator!=(const RWCString&, const RWCString&);
bool
operator!=(const RWCString&, const RWCSubString&);
bool
operator!=(const RWCSubString&, const RWCString&);
bool
operator!=(const char*, const RWCString&);
bool
operator!=(const RWCString&, const char*);


Previous fileTop of DocumentContentsIndex pageNext file

© Copyright Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave and SourcePro are registered trademarks of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.
Contact Rogue Wave about documentation or support issues.