C 语言

关注公众号 jb51net

关闭
首页 > 软件编程 > C 语言 > C++中std::string::npos

C++中std::string::npos的用法

作者:VoladorL

这篇文章主要介绍了C++中std::string::npos的用法,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教

C++中std::string::npos

(1)它是一个常量静态成员值,对于 size_t 类型的元素具有最高可能值。

(2)它实际上意味着直到字符串的末尾。

(3)它用作字符串成员函数中长度参数的值。

(4)作为返回值,它通常用于表示没有匹配项。

(5)数据类型为size_t的话string:npos常量被定义为-1,因为size_t是无符号整数类型,-1是该类型的最大可能表示值。

使用示例

作为没有匹配项的示例

#include <iostream>
#include <string>
using namespace std;
int main()
{
	string str = "I am cver";
	size_t index = str.find('.'); 
	if(index == string::npos)
	{
		cout << "This does not contain any period!" << endl;
		cout << index << endl;
	}
}

输出

This does not contain any period!
18446744073709551615

作字符串成员函数中长度参数的值

#include <iostream>
#include <string>
using namespace std;
int main()
{
	string str = "I am cver.";
	size_t index = str.find('.'); 
	if(index == string::npos)
	{
		cout << "This does not contain any period!" << endl;
		cout << index << endl;
	}
	else
	{
		str.replace(index, string::npos, "!");
		cout << str << endl;
		cout << index << endl;
	}		
}

输出:

I am cver!
9

string::npos的一些说明

定义

std::string::npos的定义:

static const size_t npos = -1;

表示size_t的最大值(Maximum value for size_t),如果对 -1表示size_t的最大值有疑问可以采用如下代码验证:

#include <iostream>
#include <limits>
#include <string>
using namespace std;
int main()
{
    size_t npos = -1;
    cout << "npos: " << npos << endl;
    cout << "size_t max: " << numeric_limits<size_t>::max() << endl;
} 

在我的PC上执行结果为:

npos:           4294967295

size_t max:  4294967295

可见他们是相等的,也就是说npos表示size_t的最大值

使用

1.如果作为一个返回值(return value)表示没有找到匹配项

例如:

#include <iostream>
#include <limits>
#include <string>
using namespace std;
int main()
{
    string filename = "test";
    cout << "filename : " << filename << endl;
    size_t idx = filename.find('.');   //作为return value,表示没有匹配项
    if(idx == string::npos)    
    {
        cout << "filename does not contain any period!" << endl;
    }
}

2.但是string::npos作为string的成员函数的一个长度参数时

表示“直到字符串结束(until the end of the string)”

例如:

tmpname.replace(idx+1, string::npos, suffix);

这里的string::npos就是一个长度参数,表示直到字符串的结束,配合idx+1表示,string的剩余部分。

#include <iostream>
#include <limits>
#include <string>
using namespace std;
int main()
{
    string filename = "test.cpp";
    cout << "filename : " << filename << endl;
    size_t idx = filename.find('.');   //as a return value
    if(idx == string::npos)    
    {
        cout << "filename does not contain any period!" << endl;
    }
    else
    {
        string tmpname = filename;
        tmpname.replace(idx + 1, string::npos, "xxx"); //string::npos作为长度参数,表示直到字符串结束
        cout << "repalce: " << tmpname << endl;
    }
}

执行结果为:

filename:test.cpp

replace: test.xxx

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文