搜索资源列表
string_strutil
- std::string并没有提供所有需要方法。所以,需要用STL提供了算法库、字符串流以及现存的std::string的方法来实现它们。 ※ 将字符串转换为大写/小写 ※ 去掉字符串两端的空格 ※ 忽略大小写比较字符串 ※ StartsWith和EndsWith ※ 从字符串解析出int和bool等类型的值 ※ 将各种数值类型转换成字符串(toString) ※ 拆分字符串和Tokenizer-std:: string does not provide all the
goods
- #include <iostream> #include <string> using namespace std class Goods {public: Goods(char *GoodsNum,string n,double p,int a) { strcpy(GoodsNumber,GoodsNum) GoodsName=n GoodsPrice=p GoodsAmount=a }
CSTRING
- 字符串处理是程序设计语言的一个重要的组成部分。有的字符串是内置的(VB等),有的是模拟的(C字符串为字符集合,算法等以库的形式提供),而C++所提供的字符串std::string是以库的形式提供。-C puls plus
wordchose
- 进行自负的匹配,- #include<iostream.h> #include <string> using namespace std class String { private: int size char *chr public: String(char* temp) { size=strlen(temp)
ch5
- • Windows API errors are converted to exceptions • Maps COM HRESULT to exceptions when appropriate • Direct2D wrapper classes • DirectWrite wrapper classes • Windows Imaging Component wrapper classes • Win
vsFakeLeakTest
- 使用vc开发mfc程序时,在调用了win32 dll(即不使用mfc的dll)时,mfc90.dll后于win32dll加载,在退出程序时mfc90.dll先释放,这时它会将win32dll中的全局变量,函数static变量视为内存泄露,而实际上随后win32dll卸载时会正常释放,导致内存泄露误报。 本程序演示了win32dll中的std::string的全局变量和函数内static变量的内存泄露误报-Using vc development mfc program, the call t
md5
- MD5加密,用法 /* #include "md5.h" #include <iostream> using namespace std void PrintMD5(const string& str, MD5& md5) { cout << "MD5(\"" << str << "\") = " << md5.toString() << endl } int ma
Hexstr
- hexstr,一个基于std::string的十六进制字符串互转的程序-Hexstr, one based on std:: String sixteen binary string to cross the program
ep2
- 北京理工大学面向对象程序设计第二次上机习题答案-1. Here is the codes: #include <iostream> using namespace std void main() { cout << Hello World!\n } Add some codes and get the results as follows: Initialize Hello, World! C
easypr
- 中文车牌识别系统: 它基于openCV这个开源库。这意味着你可以获取全部源代码,并且移植到opencv支持的所有平台。 它能够识别中文。例如车牌为苏EUK722的图片,它可以准确地输出std:string类型的"苏EUK722"的结果。 它的识别率较高。图片清晰情况下,车牌检测与字符识别可以达到80%以上的精度。(Chinese car license plate recognition system: It is based on ope
public
- 关于std::string的一些常用但std不提供的一些功能汇总。(A summary of some of the functions of std:: string, which are commonly used but not provided by STD.)
string
- 包含c++ 文件流操作 std::string操作(Include c++ file stream and std::string)