C++ 中的 string::npos 示例

传送门 ==>> AutoSAR实战系列300讲「糖果Autosar」总目录

1 C++ 中的 string::npos 示例

什么是 string::npos:

  • 它是一个常量 静态成员值,对于size_t类型的元素具有最高可能值。
  • 它实际上意味着直到字符串的结尾。
  • 它用作字符串成员函数中长度参数的值。
  • 作为返回值,它通常用于表示不匹配。

句法:

静态常量 size_t npos = -1;
其中,npos是一个常量静态值,对于****size_t类型的元素具有最高可能值,它用 -1 定义。

程序1:下面是说明****string::npos 使用的C++程序:

  • C++
// C++ program to demonstrate the use
// of string::npos
#include <bits/stdc++.h>
using namespace std;

// Function that using string::npos
// to find the index of the occurrence
// of any string in the given string
void fun(string s1, string s2)
{
	// Find position of string s2
	int found = s1.find(s2);

	// Check if position is -1 or not
	if (found != string::npos) {

		cout << "first " << s2
			<< " found at: "
			<< (found) << endl;
	}

	else
		cout << s2 << " is not in"
			<< "the string" << endl;
}

// Driver Code
int main()
{
	// Given strings
	string s1 = "geeksforgeeks";
	string s2 = "for";
	string s3 = "no";

	// Function Call
	fun(s1, s2);

	return 0;
}

输出:

first for found at: 5

解释:在上面的程序中string:npos常量定义为 -1 的值,因为size_t是一个无符号整数类型,而 -1 是这个类型的最大可能表示值。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

糖果Autosar

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值