C++ 字符串使用详解

当我们一开始使用C语言来处理字符串的时候,会感觉非常的麻烦。C语言中缺少相应的字符串处理函数,如果想要实现某个字符串功能,只能靠我们自己来实现。但是当来到C++中,字符串的处理就会变得异常简单。今天我们就来学习一下C++中最高频的字符串处理函数。示例代码上传至:https://github.com/chenyufeng1991/CppString

首先要引入C++中的字符串头文件:

#include <string>

请注意,这里的头文件是没有.h的,否则就成了C语言中的头文件了。

(1)创建字符串

创建字符串有好几种构造方式,最典型的方式就是使用复制构造函数,

string str("chenyufeng",3); cout << str << endl;

拷贝原先的字符串开头处的3个字符最为最新的字符串。打印结果为che.

string str2("chenyufeng",2,3); cout << str2 << endl;

拷贝原先字符串index=2开始处的3个字符最为新的字符串。打印结果为eny。

// = :字符串赋值  
str2 = "Robert";  
cout << str2 << endl;

同样也可以用直接赋值的方式为某个变量赋值字符串,使用”=“。打印结果为Robert.

(2)swap:交换两个字符串的值

// swap:交换两个字符串的值  
   string string1 = "chen";  
   string string2 = "yufeng";  
   swap(string1, string2);  
   cout << "string1 = " << string1 << ";string2 = " << string2 << endl;

打印结果就已经和原先的字符串的值交换了。

(3)+,append :添加字符串

// += ,append:在尾部添加字符串  
    string stringOrigin = "chen";  
    string stringAppend = "yufeng";  
    stringOrigin = stringOrigin + stringAppend;  
    cout << "stringOrigin = " << stringOrigin << endl; stringOrigin.append("_OK"); cout << "stringOriginAppend = " << stringOrigin << endl;

注意,添加字符串操作是会修改原先的字符串的。可以直接使用+号进行字符串的添加,非常方便。

(4)insert:在指定位置插入字符串

// insert:在指定position插入字符串  
    string stringInsertOrigin = "chenyufeng";  
    stringInsertOrigin.insert(3, "__");  
    cout << "stringInsertOrigin = " << stringInsertOrigin << endl;

上述代码可以在indx=3位置插入__下划线,打印结果为 che__nyufeng.

(5)erase,clear删除字符串

// erase: 删除字符  
   string stringEraseOrigin = "chenyufeng";  
   stringEraseOrigin.erase();  
   cout << "stringEraseOrigin = " << stringEraseOrigin << endl; // clear :删除全部字符 string stringClearOrigin = "chenyufeng"; stringClearOrigin.clear(); cout << "stringClearOrigin = " << stringClearOrigin << endl;

上述操作其实都是把字符串清空了。

(6)replace:替换字符串

// replace: 替换字符串,某个pos位置开始的size个字符替换成后面的“”字符串  
    string stringReplaceOrigin = "chenyufeng";  
    stringReplaceOrigin.replace(3, 2, "66"); cout << "stringReplaceOrigin = " << stringReplaceOrigin << endl;

上述代码把字符串从index=3开始的2个字符替换成”66“,打印结果为che66ufeng.

(7)==,<  , >,  <=,  >=: 比较字符串大小

C++中使用这种运算符对字符串进行操作,其实都是用了运算符重载。字符串比较大小是根据字母的字典序或者说是ASCII码值按顺序比较大小。直到比较出两个字符串的不同字母或者比较到某个字符串的最后一位停止。

// ==,<,>,<=,>=:比较字符串  
   string stringLeft = "zhen";  
   string stringRight = "yufeng";  
   if (stringLeft == stringRight) { cout << "equal" << endl; } if (stringLeft != stringRight) { cout << "not equal" << endl; } if (stringLeft < stringRight) { cout << "stringLeft < stringRight" << endl; } if (stringLeft > stringRight) { cout << "stringLeft > stringRight" << endl; }

(8)size,length:计算字符串长度

这里的计算字符串长度和C语言中不同,是不包括末尾的\0的,计算的是真实的长度。

// size(), length():计算字符串长度  
    string stringCount = "chenyufeng";  
    cout << "stringSize = " << stringCount.size() << endl; cout << "stringLength = " << stringCount.length() << endl;

上述的打印结果都是10.

(9)empty:判断字符串是否为空

// empty():判断字符串是否为空  
    string stringIsEmpty = "";  
    string stringNotEmpty = "chen";  
    if (stringIsEmpty.empty()) { cout << "stringIsEmpty == empty" << endl; } else { cout << "stringIsEmpty != empty" << endl; } if (stringNotEmpty.empty()) { cout << "stringNotEmpty == empty" << endl; } else { cout << "stringNotEmpty != empty" << endl; }

(10)字符串的输入输出流

// 输入输出stream  
    cout << "请输入一个字符串"<<endl;  
    string stringInput;  
    cin >> stringInput; cout << "stringInput = " << stringInput << endl;

字符串也可以类似于C++其他数据类型一样使用输入输出流。可以使用回车键结束输入流。

(11)max_size:字符串的最大可容纳量。

// max_size:  
    string stringMaxSize;  
    cout << "stringMaxSize = " << stringMaxSize.max_size() << endl;

打印结果为:18446744073709551599  。表示该字符串可以容纳这么多的字符数。

(12)[], at :元素存取与修改

// [],at() :元素存取  
    string stringAt = "chenyufeng";  
    cout << "stringAt[3] = " <<stringAt[3] << endl; cout << "stringAt.at(3) = " << stringAt.at(3) << endl; stringAt[3] = '6'; stringAt.at(5) = '9'; cout << "stringAt = " << stringAt << endl;

字符串可以和数组一样进行操作,使用下标进行存取,并可以进行修改原字符串。

(13)compare:字符串的比较,返回0,1 ,-1。

// compare()  
    string stringCompare = "chenyufeng";  
    int aaa = stringCompare.compare("chen"); // > 0 int bbb = stringCompare.compare("chenyufeng"); // == 0 int ccc = stringCompare.compare("done"); // < 0 cout << "aaa = " << aaa << ";bbb = " << bbb << ";ccc = " << ccc << endl;

(14)substr:取子字符串

// substr  
   string stringSubstr = "chenyufeng";  
   // 从索引为4开始的3个字符  
   cout << "stringSubstr.substr(4,3) = " << stringSubstr.substr(4,3) << endl; // 从索引为4开始的所有字符 cout << "stringSubstr.substr(4) = " <<stringSubstr.substr(4) << endl; // 整个字符 cout << "stringSubstr.substr() = " <<stringSubstr.substr() << endl;

(15)find:查找某个字符

// find  

    string stringFind = "chenyufeng";  
    stringFind.find('n');  
    cout << "stringFind.find('n') = " << stringFind.find('n') << endl; cout << "stringFind.find_first_of('e') = " << stringFind.find_first_of('e') << endl; cout << "stringFind.find_last_of('e') = " << stringFind.find_last_of('e') << endl;

默认find函数是返回某个字符第一次出现的下标index。find_first_of和find_last_of则分别是第一次和最后一次出现某个字符的index。

http://www.hongshigroup.com/kindeditor/attached/file/20190814/20190814011434_4228.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190813/20190813232241_2430.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190814/20190814010535_2728.htm
http://www.hxssf.com/kindeditor/attached/file/20190813/20190813230708_4735.htm
http://www.hxssf.com/kindeditor/attached/file/20190814/20190814004704_9213.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190814/20190814010241_5242.htm
http://www.123jsj.com/kindeditor/attached/file/20190813/20190813232521_9803.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/20190814010223262326.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/2019081400560433433.htm
http://www.123jsj.com/kindeditor/attached/file/20190813/20190813232733_9960.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190814/20190814001044804480.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190813/20190813233023_6955.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/20190814001317781778.htm
http://www.hxssf.com/kindeditor/attached/file/20190814/20190814005403_4076.htm
http://www.123jsj.com/kindeditor/attached/file/20190813/20190813234433_3866.htm
http://www.123jsj.com/kindeditor/attached/file/20190814/20190814005307_2303.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190813/20190813235362836283.htm
http://www.123jsj.com/kindeditor/attached/file/20190813/20190813231205_8553.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190813/20190813235651_8264.htm
http://www.hxssf.com/kindeditor/attached/file/20190814/20190814005858_1701.htm
http://www.hxssf.com/kindeditor/attached/file/20190813/20190813232203_9775.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190814/20190814004765196519.htm
http://www.gsdyf.com/kindeditor/attached/file/20190813/20190813233650_1330.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190813/20190813231349_6616.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190813/20190813233424192419.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190814/20190814004265416541.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190814/20190814011929_6957.htm
http://www.123jsj.com/kindeditor/attached/file/20190813/20190813235921_8553.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190814/20190814011745254525.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190813/20190813235628_4197.htm
http://www.hxssf.com/kindeditor/attached/file/20190814/20190814010954_3385.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814005456_6890.htm
http://www.hxssf.com/kindeditor/attached/file/20190813/20190813235618_3139.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/20190814010476697669.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190813/20190813233368736873.htm
http://www.123jsj.com/kindeditor/attached/file/20190813/20190813230544_9491.htm
http://www.hxssf.com/kindeditor/attached/file/20190814/20190814011836_3154.htm
http://www.hxssf.com/kindeditor/attached/file/20190813/20190813234902_5584.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190814/20190814003651_2619.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814010221_4925.htm
http://www.gsdyf.com/kindeditor/attached/file/20190813/20190813235556_3505.htm
http://www.123jsj.com/kindeditor/attached/file/20190814/20190814010623_9335.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814011107_8516.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190813/20190813234062986298.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190813/20190813232752_5996.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190813/20190813231636793679.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190814/20190814003917_9938.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/20190814011243694369.htm
http://www.hxssf.com/kindeditor/attached/file/20190813/20190813232947_0175.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814003320_4139.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190813/20190813232805_5051.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814001631_8982.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190813/20190813232556_6689.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814001110_8358.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190814/20190814012157935793.htm
http://www.123jsj.com/kindeditor/attached/file/20190814/20190814005152_0428.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190813/20190813232399599959.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190814/20190814003219_0969.htm
http://www.hxssf.com/kindeditor/attached/file/20190814/20190814002748_0076.htm
http://www.hxssf.com/kindeditor/attached/file/20190813/20190813235312_3928.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190813/20190813233566166616.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190814/20190814011213_5146.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190813/20190813234239_5591.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814000320_0969.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190813/20190813234394659465.htm
http://www.123jsj.com/kindeditor/attached/file/20190814/20190814003022_0897.htm
http://www.hxssf.com/kindeditor/attached/file/20190814/20190814000041_2836.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190814/20190814005021_0262.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190814/20190814011140694069.htm
http://www.hxssf.com/kindeditor/attached/file/20190814/20190814005128_9985.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190813/20190813231620882088.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190814/20190814011041_0160.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190813/20190813231233803380.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814005405_7731.htm
http://www.123jsj.com/kindeditor/attached/file/20190814/20190814010953_0897.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190814/20190814001731_6008.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814011021_0329.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190814/20190814001209_0546.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190814/20190814000935873587.htm
http://www.123jsj.com/kindeditor/attached/file/20190814/20190814004301_7147.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190813/20190813230706_4134.htm
http://www.123jsj.com/kindeditor/attached/file/20190813/20190813231552_5116.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190814/20190814003626_7847.htm
http://www.123jsj.com/kindeditor/attached/file/20190814/20190814010756_1210.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190814/20190814004279097909.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190813/20190813235052685268.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190813/20190813231968916891.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190813/20190813233172197219.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190813/20190813232923_4273.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814000626_9366.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/20190814005243404340.htm
http://www.123jsj.com/kindeditor/attached/file/20190814/20190814003407_4178.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190813/20190813233655_3913.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190814/20190814001918_5572.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190814/20190814002344_1639.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/20190814004988938893.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190813/20190813234824_0513.htm
http://www.123jsj.com/kindeditor/attached/file/20190814/20190814004234_1522.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190814/20190814010558_7546.htm
http://www.gsdyf.com/kindeditor/attached/file/20190813/20190813232408_2854.htm
http://www.hxssf.com/kindeditor/attached/file/20190813/20190813235652_7588.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/20190814005033093309.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814001534_9949.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190813/20190813235624902490.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814011413_7022.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190814/20190814010643_3560.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/20190814000593459345.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190814/20190814011857_4483.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190814/20190814001433_7860.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190814/20190814004612831283.htm
http://www.123jsj.com/kindeditor/attached/file/20190813/20190813230730_7303.htm
http://www.123jsj.com/kindeditor/attached/file/20190814/20190814001911_7460.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814005018_2271.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190814/20190814011980458045.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814002416_0107.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190814/20190814002285538553.htm
http://www.123jsj.com/kindeditor/attached/file/20190813/20190813235712_4491.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190813/20190813235129_5700.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814010017_6284.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190814/20190814004693189318.htm
http://www.hxssf.com/kindeditor/attached/file/20190814/20190814010014_2671.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190814/20190814001858_4929.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/20190814010787398739.htm
http://www.123jsj.com/kindeditor/attached/file/20190814/20190814002310_4178.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814011132_1600.htm
http://www.hxssf.com/kindeditor/attached/file/20190814/20190814011813_9294.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190814/20190814010620_9790.htm
http://www.gsdyf.com/kindeditor/attached/file/20190813/20190813231533_6610.htm
http://www.hxssf.com/kindeditor/attached/file/20190814/20190814010218_1469.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/20190814003456185618.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190814/20190814004873457345.htm
http://www.gsdyf.com/kindeditor/attached/file/20190813/20190813231602_0756.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814002222_2922.htm
http://www.123jsj.com/kindeditor/attached/file/20190814/20190814002649_8710.htm
http://www.123jsj.com/kindeditor/attached/file/20190814/20190814011128_4335.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190813/20190813230832_6511.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/20190814000722692269.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814011438_7036.htm
/kindeditor/attached/file/20190814/20190814012203_9960.htm
http://www.hxssf.com/kindeditor/attached/file/20190813/20190813233959_4590.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190813/20190813232066726672.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814002604_8230.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190813/20190813232431_3123.htm
http://www.hxssf.com/kindeditor/attached/file/20190813/20190813231921_7060.htm
http://www.hxssf.com/kindeditor/attached/file/20190814/20190814003027_3463.htm
http://www.gsdyf.com/kindeditor/attached/file/20190813/20190813232042_2766.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190813/20190813230455_2893.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190813/20190813234932_2329.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190813/20190813232412_5499.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190813/20190813235934_3298.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190813/20190813232760146014.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190813/2019081323220817817.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190813/20190813232544104410.htm
http://www.hxssf.com/kindeditor/attached/file/20190813/20190813235901_7086.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190813/20190813233766186618.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190813/20190813234747_5399.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190814/20190814004057_7560.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/20190814001417121712.htm
http://www.123jsj.com/kindeditor/attached/file/20190813/20190813233347_4960.htm
http://www.123jsj.com/kindeditor/attached/file/20190814/20190814005855_7928.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190813/2019081323060729729.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190814/20190814005830_7568.htm
http://www.123jsj.com/kindeditor/attached/file/20190813/20190813230348_2303.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190814/20190814010911_3574.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/20190814011569196919.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190814/20190814005524_3999.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190813/20190813233149_0847.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190813/20190813231233_6157.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190814/20190814005814_0034.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/20190814001138093809.htm
http://www.hxssf.com/kindeditor/attached/file/20190814/20190814004355_7085.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190814/20190814004944_3956.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190813/20190813232132_8066.htm
http://www.gsdyf.com/kindeditor/attached/file/20190813/20190813231720_2631.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/20190814000837403740.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190813/20190813234536_1514.htm
http://www.123jsj.com/kindeditor/attached/file/20190814/20190814010353_5585.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190814/20190814005799469946.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/20190814011733813381.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814003030_7952.htm
http://www.123jsj.com/kindeditor/attached/file/20190814/20190814010732_8397.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190813/20190813230522_7573.htm
http://www.hxssf.com/kindeditor/attached/file/20190813/20190813232714_6989.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/20190814002498199819.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814011837_4943.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190813/20190813232637_2630.htm
http://www.hxssf.com/kindeditor/attached/file/20190814/20190814011858_6858.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814000842_6084.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190814/20190814005806_2868.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190813/20190813230582618261.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190814/20190814003132_4578.htm
http://www.hxssf.com/kindeditor/attached/file/20190814/20190814011323_5349.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190813/20190813233656575657.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190813/20190813230438_6167.htm
http://www.gsdyf.com/kindeditor/attached/file/20190813/20190813230549_6136.htm
http://www.hxssf.com/kindeditor/attached/file/20190813/20190813235935_2487.htm
http://www.123jsj.com/kindeditor/attached/file/20190814/20190814002211_5272.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814003514_1324.htm
http://www.hxssf.com/kindeditor/attached/file/20190814/20190814011215_6279.htm
http://www.hkpmia.org.cn/kindeditor/attached/file/20190814/2019081401100749749.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/20190814003293879387.htm
http://www.123jsj.com/kindeditor/attached/file/20190814/20190814004206_8710.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190814/20190814004151_4981.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/20190814004640074007.htm
http://www.hongshigroup.com/kindeditor/attached/file/20190814/20190814004327_2740.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814000044_7660.htm
http://www.fengshengcaifu.com/kindeditor/attached/file/20190813/20190813235600_7609.htm
http://www.123jsj.com/kindeditor/attached/file/20190814/20190814004418_7928.htm
http://www.gdzjco.cn/kindeditor/attached/file/20190814/20190814011076677667.htm
http://www.gsdyf.com/kindeditor/attached/file/20190814/20190814002634_1596.htm

 

猜你喜欢

转载自www.cnblogs.com/y7y457yrty/p/12934160.html