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

C语言字符串处理函数

作者: Dalvik_ | 来源:发表于2021-03-05 09:58 被阅读0次

字符串处理函数

阅读(atoi,atof,strtod,strcmp,strcmpi,strstr,strcat,tolower)

1.atoi 把字符串转换成长整型数
#include <stdio.h>
#include <stdlib.h>
int main() {
    int n;
    char *str = "12345.67";
    n = atoi(str);
    printf("string = %s integer = %d\n", str, n);
}
2.atof 把字符串转换成浮点数
#include <stdio.h>
#include <stdlib.h>
int main() {
    float n;
    char *str = "12345.67";
    n = atof(str);
    printf("string = %s integer = %f\n", str, n);
}
3 strtod 将字符串转换为double型值
#include <stdio.h>
#include <stdlib.h>

int main(void)
{
    char input[80], *endptr;
    double value;

    printf("Enter a floating point number:");
    gets(input);
    value = strtod(input, &endptr);
    printf("The string is %s the number is %lf\n", input, value);
    return 0;
}
4.strcmp 字符串比较
#include <string.h> 
#include <stdio.h> 

int main(void) 
 { 
    char *buf1 = "aaa", *buf2 = "bbb", *buf3 = "ccc"; 
    int ptr; 

    ptr = strcmp(buf2, buf1); 
    if (ptr > 0) 
       printf("buffer 2 is greater than buffer 1\n"); 
    else 
       printf("buffer 2 is less than buffer 1\n"); 

    ptr = strcmp(buf2, buf3); 
    if (ptr > 0) 
       printf("buffer 2 is greater than buffer 3\n"); 
    else 
       printf("buffer 2 is less than buffer 3\n"); 

    return 0; 
 } 
4 strcmpi 不区分大小写比较字符串
#include <string.h>
#include <stdio.h>

int main(void)
{
    char *buf1 = "bbb", *buf2 = "BBB", *buf3 = "BbB";
    int ptr;

    ptr = stricmp(buf2, buf1);
    if (ptr > 0)
        printf("buffer 2 is greater than buffer 1\n");
    else if (ptr == 0)
        printf("buffer 2 equals buffer 1\n");
    else
        printf("buffer 2 is less than buffer 1\n");

    ptr = stricmp(buf2, buf3);
    if (ptr > 0)
        printf("buffer 2 is greater than buffer 3\n");
    else if (ptr == 0)
        printf("buffer 2 equals buffer 3\n");
    else
        printf("buffer 2 is less than buffer 3\n");


    return 0;
}
5. strstr 根据字符串截取指定字符串第一次出现的地方
#include <stdio.h>
#include <string.h>

int main(void)
{
    char *str1 = "Borland International", *str2 = "Inter", *ptr;

    ptr = strstr(str1, str2);
    printf("The substring is: %s\n", ptr);
    return 0;
}
输出: The substring is: International
6 strcat 字符串拼接
#include <string.h>
#include <stdio.h>

int main(void)
{
    char destination[25];
    char *blank = " ", *c = "C++", *Borland = "Borland";

    strcpy(destination, Borland);
    strcat(destination, blank);
    strcat(destination, c);
    printf("%s\n", destination);
    return 0;
}
7 tolower 把字符转换成小写字母
#include <string.h>
#include <stdio.h>
#include <ctype.h>

int main(void) {
    int length, i;
    char *string = "THIS IS A STRING";
    length = strlen(string);
    char *dest;
    for (i = 0; i < length; i++) {
        dest[i] = tolower(string[i]);
    }
    *(dest+length)='\0';
    printf("%s\n", dest);
    return 0;
}

作业 字符串截取函数

void subString(char *string, char *result, int start, int end) {
    int length;
    char *temp = string;
    length = strlen(temp);
    if (start >= 0 && end <= length) {
        for (int i = start; i < end; i++) {
            result[i - start] = temp[i];
        }
        result[end - start] = '\0';
        printf("输入结果%s\n", result);
    } else {
        printf("输出结果%s\n", "下标越界");
    }

相关文章

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

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

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

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

  • R 包学习 - stringr()

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

  • C语言库函数

    C语言库函数的原理: atoi:字符串转换为整形 (符号和空格的处理,异常的处理) itoa:整形转换为字符串(使...

  • C语言字符串处理函数

    C语言提供了丰富的字符串处理函数,例如字符串的输入、输出、合并、修改、比较、转换、复制、搜索等,使用这些现成的函数...

  • c语言字符串处理函数

    gets()fgets()puts()fputs()strlen()strcpy()strncpy()strcat...

  • C语言字符串处理函数

    1求字符串的长度 运行结果:strlen(str1)=38,sizeof(str1)=4strlen(str1)=...

  • C语言字符串处理函数

    字符串处理函数 阅读(atoi,atof,strtod,strcmp,strcmpi,strstr,strcat,...

  • 6.PHP字符串

    字符串的处理介绍 字符串的处理方式 在C语言中字符串是作为字节数组处理的。在Java语言中字符串是作为对象处理的。...

  • 字符串函数

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

网友评论

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

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