Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

What functions are declared in "string" module ?

Status
Not open for further replies.

trurl

Junior Member level 2
Junior Member level 2
Joined
Mar 14, 2006
Messages
20
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,436
Hi All,

I'm a beginner with c++ (MS VS 2005). I need to use module "string". I tried to find in MSDN what functions are declared in this module, but did not succeed. Could anybody help looking for this info in MSDN? The problem is that I get a lot of search results, but none of them is about the module itself. Thanks in advance.

Regards.
 

MS VS C++ 2005 help

'string' is part of the STL, the standard template library of C++.
Not anything done by microsoft.
If you just include string:

#include <string>

then declare a variable.

std::string myString;

then type the variable and a full stop,

myString.

visual studio will then list all the functions and operators that can be used with string.

Google for the STL, you should find info about the string templates there.
 

    trurl

    Points: 2
    Helpful Answer Positive Rating
Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top