美文网首页
C语言字符串和字符串函数

C语言字符串和字符串函数

作者: arkliu | 来源:发表于2019-06-15 17:06 被阅读0次

字符串的表示方式

#include <stdio.h>
#define STR "I am a string in define"
#define MAX_CHAR_LENGHT 81

int main()
{
    char * str = "I am a string in point";
    char words[MAX_CHAR_LENGHT] = "I am a string in array";
    puts("here are some strings:");
    // puts函数只显示字符串,而且自动在显示的字符串末尾加上换行符
    puts(STR);
    puts(str);
    puts(words);
    words[4] = 'o';
    puts(words);
    return 0;
}


image.png

把字符串看作指针

#include <stdio.h>

int main()
{
    printf("%s, %p, %c", "we", "are", *"Space"); // %p打印一个地址, *"Space"表示Space字符串地址的指针
    return 0;
}


image.png

字符串数组和指针

\color{red}{初始化数组会把静态存储区的字符串拷贝到数组中,而初始化指针只把字符串的地址拷贝给指针} 看下面例子

#include <stdio.h>
#define MSG "i am special"

int main()
{
    char * chrPoint = MSG;
    char chrArray[] = MSG;
    printf("address MSG is :%p\n", MSG);
    printf("address \"i am special is\" :%p\n", "i am special");
    printf("address chrPoint is :%p\n", chrPoint);
    printf("address chrArray is :%p\n", chrArray);
    return 0;
}


image.png

可以看到,数值的地址是没有发生变化的,只是内容改变了。

数组和指针的区别

char strarray[] = "i love china";
char * strpoint = "i love china";

以上两行代码的区别是:数组名strarray是常量,而指针strpoint 是变量。只有指针表示法可以进行递增操作。

字符串数组

#include <stdio.h>
#define SLEN 40
#define LIM 5

int main()
{
    const char * mytalents[LIM] = {
        "my first string ...",
        "my sencond string...",
        "my third string",
        "my fourth string",
        "my fifth string"
    };

    char yourtalents[LIM][SLEN] = {
        "yours first string ...",
        "yours sencond string...",
        "yours third string",
        "yours fourth string",
        "yours fifth string"
    
    };
    printf("lets compare talents\n");
    printf("%-36s %-25s\n", "mytalents", "yourtalents");
    for (size_t i = 0; i < LIM; i++)
    {
        printf("%-36s %-25s\n", mytalents[i], yourtalents[i]);
    }
    printf("size of mytalent %d    size of yourtalent %d", sizeof(mytalents), sizeof(yourtalents));

    return 0;
}


image.png

上述字符串表示中,mytalent是一个内含5个指针的数组,yourtalent是一个内含5个数组的数组。

指针和字符串

#include <stdio.h>
#define SLEN 40
#define LIM 5

int main()
{
    char * str1 = "this is a test";
    char * temp;

    temp = str1;
    printf("str1 = %s, &str1 = %p str1 = %p\n", str1, &str1, str1);
    printf("temp = %s, &temp = %p temp = %p\n", temp, &temp, temp);
    return 0;
}

image.png

可以看到第三个打印,指针str1和指针temp的值是相同的,也就是temp指针也指向str1指针指向的地址。

字符串函数

char *strcpy(char * restrict s1, const char * restrict s2);
该函数把s2指向的字符串拷贝至s1指向的字符串,返回值是s1

char *strncpy(char * restrict s1, const char * restrict s2, size_t n);
该函数把s2指向的字符串拷贝至s1指向的位置,拷贝的字符数不超过n看,其返回值是s1,该函数不会拷贝空字符后面的字符

char *strchr(const char *s, int c);
如果s字符串中包含字符c,该函数返回指向s字符串首次出现的c字符的指针,如果未找到c,则返回空指针

char *strpbrk(const char * s1, const char *s2);
如果s1字符中包含s2字符中的任意字符,则该函数返回s1字符串首位置的指针,如果在s1字符串中未找到任何s2中的字符,则返回空字符

char *strrchr(const char *s, int c);
该函数返回s字符串中c字符最后一次出现的位置,如果未找到c字符,则返回空指针

char * strstr(const char * s1, const char *s2);
该函数返回指向s1字符串中s2字符串出现的首位置,如果s1中没有找到s2,则返回空指针

atoi函数

#include <stdio.h>
#include <stdlib.h>

int main(int argc, char ** args, char ** env)
{
    printf("argc is %d\n", argc);
    for (size_t i = 0; i < argc; i++)
    {
        printf("args[%d] is :%s\n",i, args[i]);
    }
    

    printf("atoi result %d\n", atoi("325"));
    printf("atoi result %d\n", atoi("42hello")); // 只返回整数部分
    printf("atoi result %d\n", atoi("hello world")); // 如果未包含数字,则返回0

    // strtol 把字符串转换成long类型的值
    // strtod 把字符串转换成double类型的值
    return 0;
}
image.png

static变量作用域

#include <stdio.h>
#include <stdlib.h>

void more(void);

int main(int argc, char ** args, char ** env)
{
    for (size_t i = 0; i < 3; i++)
    {
        printf("第%d次调用\n", i + 1);
        more();
    }
}

// 变量的作用域

// 这里count存储在静态内存中,它从程序被载入到程序结束期间都存在,但是他的作用于定义在more函数块总,只有在执行该函数是,成名徐次啊能使用count访问它所
 //指向的对象,但是该函数可以给其他函数提供该存储区的地址,以便间接访问该对象
void more(void) {
    static int count = 0;
    int number = 0;
    printf("number is :%d count is :%d\n", ++number, ++count); //静态变量count保存了被递增后的值,但是number每次都是0
}

//寄存器变量
// 变量通常存储在计算机中,可以是存储类别说明符register声明寄存器变量,声明未register寄存器变量不一定成功,编译器会衡量当前资源,或者直接忽略register请求,
// 这种青年狂,寄存器变量就编程普通的自动变量,即使这样,仍然不能对该变量使用地址运算符。
image.png

相关文章

  • Redis 源码简洁剖析 02 - SDS 字符串

    C 语言的字符串函数 C 语言 string 函数[https://devdocs.io/c-strings/],...

  • (三)C语言之字符串与字符串函数

    (三)C语言之字符串与字符串函数 字符串与字符串函数 1. 字符串 使用字符数组存储字符串,\0 表示结束符,字符...

  • C++11新特性(20)-用string对象处理文件名

    C风格字符串 从C语言开始,就已经实现了对字符串的支持。为了处理C风格字符串,C语言标准库提供了一组函数,它们被定...

  • C语言18 指针与字符串

    C语言18 指针与字符串 字符串的几种表示方式有什么区别? 常用的字符串函数 指针函数 本质就是函数,只不过函数的...

  • 字符串函数

    字符串转换类函数 addcslashes函数:以C语言风格使用反斜线转义字符串中的字符addslashes函数:使...

  • 39_字符串类的创建(上)

    关键词: 0. 历史遗留问题 C语言不支持真正意义上的字符串 C语言用字符数组和一组函数实现字符串操作 C语言不支...

  • R 包学习 - stringr()

    stringr: R 语言字符串处理包 字符串拼接函数str_c: 字符串拼接。str_join: 字符串拼接,同...

  • C++中数组操作符的重载

    字符串类的兼容性 存在的一些历史遗留问题C语言不支持真正意义上的字符串C语言用字符数组和一组函数实现字符串操作C语...

  • 【C语言】字符串输入输出函数

    字符串输出函数:puts 字符串输入函数:gets 在C语言中用于输入输出的字符串函数使用前应包含头文件"stdi...

  • PHP字符串的操作函数

    1 字符串转换类函数 addcslashes函数:以C语言风格使用反斜线转义字符串中的字符 addslashes函...

网友评论

      本文标题:C语言字符串和字符串函数

      本文链接:https://www.haomeiwen.com/subject/edcnxctx.html