itoa、atoi strchr

atoi (表示 ascii to integer)是把字符串转换成整型数的一个函数,应用在计算机程序和办公软件中。

itoa是广泛应用的非标准C语言和C++语言扩展函数。由于它不是标准C/C++语言函数,

所以不能在所有的编译器中使用。但是,大多数的编译器(如Windows上的)通常

/头文件中包含这个函数。

功能:将任意类型的数字转换为字符串。在中与之有相反功能的函数是atoi。


#include 

using namespace std;

int main()
{
    char *data="13246";
    int var=atoi(data);//字符串型转为整型
    cout<
itoa、atoi strchr_第1张图片
strchr函数原型:extern char *strchr(const char *s,char c);查找 字符 串s中首次出现字符c的位置。

#include 
#include 
using namespace std;

int find_count(char *p,char ch)
{
    int count=0;
    while(p=strchr(p,ch))//通过p来更新查找位置(依次向后推进)
    {
        count++;
        p++;//将当前指针向后移动一个位置,表示
    }
    return count;
}

int main()
{
    char  buf[1024]="great wall great wall eee";

    char ch = 'e';
    int num=find_count(buf,ch);
    cout<<"字符串中"<

itoa、atoi strchr_第2张图片




你可能感兴趣的:(itoa,atoi,strchr,加强,C/C++小技巧)