std::string查找---find、rfind &转换--stoi、to_string

size_type find()
于字符串中寻找字符

#include <string>
#include <iostream>
using namespace std;
int main()
{
	int n;
    string const s = "This is a string";
    // 从 string 开始搜索
    n = s.find("is");//2
 
    // 从位置 5 开始搜索
    n = s.find("is", 5);//5
 
    // 寻找单个字符
    n = s.find('a');//8
}

rfind()
寻找子串的最后一次出现

#include <string>
#include <iostream>
using namespace std;
int main()
{
	int n;
    string const s = "This is a string";
    // 从 string 开始搜索
    n = s.rfind("is");//5
 
    // 从位置 7 反向搜索
    n = s.rfind("i", 7);//5
 
    // 寻找单个字符
    n = s.rfind('i');//13
}

stoi()/stol
string - >int/long

#include <iostream>
#include <string>
using namespace std;
int main()
{
    string str1 = "45";
    string str2 = "3.14159";
    int myint1 = std::stoi(str1);
    int myint2 = std::stoi(str2);
 	cout << myint1 <<" "<< myint2 << endl;
 	return 0;
}

to_string()
int | float | double ->string

#include <iostream>
#include <string>
using namespace std;
int main()
{
    int int1 = 45;
    double d2 = 3.14159;
    string mystr1 = to_string(int1);
    string mystr2 = to_string(d2);
 	cout << mystr1 <<" "<< mystr2 << endl;
 	return 0;
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值