C++ 中字符串查找、字符串截取、字符串替换

1、字符串查找

 s.find(s1)         //查找s中第一次出现s1的位置,并返回(包括0)

 s.rfind(s1)        //查找s中最后次出现s1的位置,并返回(包括0)

 s.find_first_of(s1)       //查找在s1中任意一个字符在s中第一次出现的位置,并返回(包括0)

s.find_last_of(s1)       //查找在s1中任意一个字符在s中最后一次出现的位置,并返回(包括0)

s.fin_first_not_of(s1)         //查找s中第一个不属于s1中的字符的位置,并返回(包括0)

s.fin_last_not_of(s1)         //查找s中最后一个不属于s1中的字符的位置,并返回(包括0)

字符串截取

s.substr(pos, n)    //截取s中从pos开始(包括0)的n个字符的子串,并返回

s.substr(pos)        //截取s中从从pos开始(包括0)到末尾的所有字符的子串,并返回

字符串替换

 s.replace(pos, n, s1)     //用s1替换s中从pos开始(包括0)的n个字符的子串

代码测试(字符串操作.cpp)

#include <iostream>
using namespace std;

/* 字符串查找 */ 
void findSubString(string str){
    // find()函数的使用,返回查找对象第一次出现的位置.  
    cout << str.find("fs") << endl;
    // rfind()函数的使用,返回查找对象最后出现的位置
    cout << str.rfind("s") << endl;
}

/* 字符串截取 */ 
void getSubString(string str){
    // substr(pos)函数的使用,返回从pos开始(包含pos位置的字符)所有的字符
    cout << str.substr(2) << endl;
    // substr(pos,n),返回从pos开始(包含pos位置的字符)n个字符
    cout << str.substr(2, 2) << endl;
}

/* 字符串替换 */ 
void replaceString(string str){
    // replace(pos,n,s1),用s1替换从pos开始的n个字符
    cout << str.replace(0,2,"xiaoming") << endl;
}

int main()
{
    string str = string("sdfsf");
    // findSubString(str);
    // getSubString(str);
    replaceString(str);
    return 0;
}

字符替换(用x替换字符串中所有的a.cpp)

#include <iostream>
using namespace std;

/* 用x替换a */
void replaceAWithX(string str){
    int pos;
    pos = str.find("a");
    while(pos != -1){
        // str.length()求字符的长度,注意str必须是string类型
        str.replace(pos,string("a").length(),"x");
        pos = str.find("a");
    }

    cout << str << endl;
}

int main()
{
    string str = string("fsafsdf");
    replaceAWithX(str);
    return 0;
}

C++ string类中的字符串查找

类string提供了大量查找功能和搜索功能,其中比较常用的查找和搜索函数是find()函数、

find_first_not_of()函数、find_first_of()函数、find_last_not_of()函数、find_last_of()函数、rfind()等。

find()函数的语法如下所示:
(1) size_type find(E c, size_type pos = npos) const;用来查找单个字符在字符串中出现的位置并返回
    该位置基于0的索引值。
(2) size_type find(const E *s, size_type pos = npos) const;用来查找以空字符结尾的字符数组在
    字符串中出现的位置并返回该位置基于0索引值。
(3) size_type find(const E *s, size_type pos, size_type n = npos) const;用来查找以空字符结尾的
    字符数组在字符串中出现的位置并返回该位置基于0索引值,它是从npos开始查找的。
(4) size_type find(const basic_string &str, size_type pos = npos) const;用来查找字符串并且返回
    该搜索的字符串的基于0索引值的位置值,它是从npos开始查找的。


find()函数的功能是从std::string对象的头部顺序找目标值,如果找到返回该目标值出现的位置,如果没有在字符串对象中找到目标对象,返回值为-1。


rfind()函数的语法如下所示:
(1) size_type rfind(E c, size_type pos = npos) const;用来反向查找单个字符在字符串中出现的位置
    并返回该位置基于0的索引值。
(2) size_type rfind(const E *s, size_type pos = npos) const;用来反向查找以空字符结尾的字符数组
    在字符串中出现的位置并返回该位置基于0索引值。
(3) size_type rfind(const E *s, size_type pos, size_type n = npos) const;用来反向查找以空字符
    结尾的字符数组在字符串中出现的位置并返回该位置基于0索引值,它是从npos开始查找的。
(4) size_type rfind(const basic_string &str, size_type pos = npos) const;用来反向查找字符串并且
    返回出现该搜索的字符串的基于0索引值的位置值,它是从npos开始查找的。
rfind()函数的功能是从std::sring对象的尾部反向查找目标值,如果找到返回该目标值出现的位置,如果没有在字符串对象中找到目标对象,返回值为-1。


find_first_not_of()函数的常见语法如下所示:
size_type find_first_not_of(E c, size_type pos = 0) const;
size_type find_first_not_of(const E *s, size_type pos = 0) const;
size_type find_first_not_of(const E *s, size_type pos, size_type n) const;
size_type find_first_not_of(const basic_string &str, size_type pos = 0) const;
该函数的功能是在string对象中查找对象,如果在string出现了完全不匹配的字符,字符串或以空字符结尾的字符数组时,系统显示第一次出现这种情形的位置。如果定义了pos,从pos开始搜索。


find_first_of()函数的常见语法如下所示:
size_t find_first_of( const string& str, size_t pos = 0 ) const;
size_t find_first_of( const char* s, size_t pos, size_t n ) const;
size_t find_first_of( const char* s, size_t pos = 0 ) const;
size_t find_first_of( char c, size_t pos = 0 ) const;
该函数的功能是在string对象中查找对象,如果在string出现了任意完全匹配的字符,字符串或以空字符结尾的字符数组时,系统显示第一次出现这种情形的位置。如果定义了pos,从pos开始搜索。只要在string对象中出现了匹配对象,立即返回位置。


find_last_not_of()函数的常见语法如下所示:
size_t find_last_not_of( const string& str, size_t pos = npos ) const;
size_t find_last_not_of( const char* s, size_t pos, size_t n ) const;
size_t find_last_not_of( const char* s, size_t pos = npos ) const;
size_t find_last_not_of( char c, size_t pos = npos ) const;
该函数的功能是在string对象中反向查找对象,如果在string出现了任意完全不匹配的字符,字符串或以空字符结尾的字符数组时,系统显示第一次完全不匹配时出现的位置。如果定义了pos,从pos反向开始搜索。只要在string对象中出现了完全不匹配的对象,立即返回位置值。


find_last_of()函数的常见语法如下所示:
size_t find_last_of( const string& str, size_t pos = npos ) const;
size_t find_last_of( const char* s, size_t pos, size_t n ) const;
size_t find_last_of( const char* s, size_t pos = npos ) const;
size_t find_last_of( char c, size_t pos = npos ) const;
该函数的共是在string对象中反向查找对象,如果在string出现了任意完全匹配的字符,字符串或以空字符结尾的字符数组时,系统显示第一次出现这种情形的位置。如果定义了pos,从pos开始反向搜索。只要在string对象中出现了匹配的对象,则立即返回位置值。
#include <iostream>
#include <string>
 
using namespace std;
 
int main(int argc, char *argv[])
{
	string str1("Heartbeat");
	string str2("abcde");
	int iPos = 0;
 
 
	cout << "The string to search is '" << str1.c_str() << "'" << endl;
	//find the first instance in str1 of any characters in str2
	iPos = str1.find_first_of(str2, 0);
	cout << "Element in '" << str2.c_str() << "' found at position " << iPos << endl;
 
	//start looking in the third position
	iPos = str1.find_first_of(str2, 2);
	cout << "Element in '" << str2.c_str() << "' found at position " << iPos << endl;
 
	//use an array of the element type as the set of elements to search for;
	//look for anything after the fourth position
	char achVowels[] = {'a', 'e', 'i', 'o', 'u'};
	iPos = str1.find_first_of(achVowels, 4, sizeof(achVowels));
	cout << "Element in '";
	for (int i = 0; i < sizeof(achVowels); ++i)
	{
		cout << achVowels[i];
	}
	cout << "' found at position " << iPos << endl;
 
	//use a string literal to specify the set of elements
	char szVowels[] = "aeiou";
	iPos = str1.find_first_of(szVowels, 0);
	cout << "Element in '" << szVowels << "' found at position " << iPos << endl;
 
	//look for a specific character beginning in the third position
	iPos = str1.find_first_of('e', 2);
	cout << "'e' found at position " << iPos << endl;
 
	return 0;
}

运行结果为:

The string to search is ‘Heartbeat’
Element in ‘abcde’ found at position 1
Element in ‘abcde’ found at position 2
Element in ‘aeiou’ found at position 6
Element in ‘aeiou’ found at position 1
‘e’ found at position 6

附:
stoi函数: 将string类型转换成int类型的函数

stod函数: 将string类型转换成double类型的函数

atof函数: 将string类型转换成double类型的函数

stoi - C++ Reference (cplusplus.com)

stod - C++ Reference (cplusplus.com)

atof - C++ Reference (cplusplus.com)

两个函数的共同特性:

1.会自动截取所需要的类型数值

2.遇到非数字,截取停止,即使后面有数字也不会继续读取了

atof函数的个性:

1.未找到时返回值为0

2.stod函数使用对象为string类型,而atof函数为const char*

stoi/stod函数适应性较好,可以读取string类型的字符串

  • 10
    点赞
  • 192
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值