用std::string::compare()用法

c++系列文章目录

c++处理文本相对于python等脚本语言还是挺麻烦的,往往需要和fstream、fstream、string、一起配合使用才能完全把文本解析出来。其实,string并不是一个单独的容器,只是basic_string 模板类的一个typedef 而已,相对应的还有wstring, 你在string 头文件中你会发现下面的代码:
在这里插入图片描述
由于只是解释string的用法,如果没有特殊的说明,本文并不区分string 和 basic_string的区别。

string 其实相当于一个保存字符的序列容器,因此除了有字符串的一些常用操作以外,还有包含了所有的序列容器的操作。字符串的常用操作包括:增加、删除、修改、查找比较、链接、输入、输出等。

场景

  1.std::string 我们经常用来存储字符串数据, 当然它也可以作为byte的存储器,存储任意字节.

  2.通常情况下我们使用 std::string 的 compare 方法比较字符串, 但这个方法比较奥字符串是不可靠的.

说明

1.compare 方法和 strcmp并不相同, 它比较的是 std::string size()大小里的所有字节.在size() 长度范围里, 如果有’\0’字符, 一样进行比较, 所有在不知道 std::string里是否存储纯字符串时, 最好先转换为 const char* (调用c_str()) , 再调用 strcmp比较. 这个坑还是很吓人的.

前言

cplusplus reference

在这里插入图片描述

一、列子

void ModelImporter::parseOBJ(const char* filePath)
{
	float x = 0.f, y = 0.f, z = 0.f;
	string content;
	ifstream fileStream(filePath, ios::in);
	string line = "";

	while (!fileStream.eof())
	{
		getline(fileStream, line);
		if (line.compare(0, 2, "v ") == 0)    //注意v后面有空格
		{
			std::stringstream ss(line.erase(0, 1));
			ss >> x >> y >> z;
			//ss >> x; ss >> y; ss >> z;
			_vertVals.push_back(x);
			_vertVals.push_back(y);
			_vertVals.push_back(z);
		}
		if (line.compare(0, 2, "vt") == 0)
		{
			std::stringstream ss(line.erase(0, 2));
			ss >> x >> y;
			_stVals.push_back(x);
			_stVals.push_back(y);
		}
		if (line.compare(0, 2, "vn") == 0)
		{
			std::stringstream ss(line.erase(0, 2));
			ss >> x >> y >> z;
			_normalVals.push_back(x);
			_normalVals.push_back(y);
			_normalVals.push_back(z);
		}
		if (line.compare(0, 2, "f") == 0)
		{
			string oneCorner, v, t, n;
			std::stringstream ss(line.erase(0, 2));
			for (int i = 0; i < 3; i++)
			{
				getline(ss, oneCorner, ' ');
				//getline(ss, oneCorner, " ");
				stringstream oneCornerSS(oneCorner);
				getline(oneCornerSS, v, '/');
				getline(oneCornerSS, t, '/');
				getline(oneCornerSS, n, '/');

				int vertRef = (stoi(v) - 1) * 3;   //为什么要 -1?
				int tcRef = (stoi(t) - 1) * 2;
				int normRef = (stoi(n) - 1) * 3;

				_triangleVerts.push_back(_vertVals[vertRef]);
				_triangleVerts.push_back(_vertVals[vertRef + 1]);
				_triangleVerts.push_back(_vertVals[vertRef + 2]);

				_textureCoords.push_back(_stVals[tcRef]);
				_textureCoords.push_back(_stVals[tcRef + 1]);

				_normals.push_back(_normalVals[normRef]);
				_normals.push_back(_normalVals[normRef + 1]);
				_normals.push_back(_normalVals[normRef + 2]);
			}
			 
		}
	}
}
#include <iostream>
#include <string>
 
int main ()
{
  std::string str1 ("green apple");
  std::string str2 ("red apple");
 
  if (str1.compare(str2) != 0)
    std::cout << str1 << " is not " << str2 << '\n';
 
  if (str1.compare(6,5,"apple") == 0)//第一个参数表示str1中的位置:str1[6],第二个参数表示要比较的字符串的最大数量,即从指定位置开始后的比较数目
    std::cout << "still, " << str1 << " is an apple\n";
 
  if (str2.compare(str2.size()-5,5,"apple") == 0)//同上
    std::cout << "and " << str2 << " is also an apple\n";
 
  if (str1.compare(6,5,str2,4,5) == 0)//str1中的“apple”和str2中的“apple”比较
    std::cout << "therefore, both are apples\n";
 
  return 0;
}

二、运行结果

green apple is not red apple
still, green apple is an apple
and red apple is also an apple
therefore, both are apples

总结

注意:比较的结果不一定为1,0,-1,可能出现+2、-2等情况,当为正数时表示str1大于str2,为零时相等,为负数时小于str2

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值