gpt4 book ai didi

c - 如何获取给定字符串的子串?

转载 作者:行者123 更新时间:2023-11-30 14:43:21 24 4
gpt4 key购买 nike

我需要从给定的字符串中获取第一个实数(在 , 之后)例如:

char *line = "The num is, 3.444 bnmbnm";
//get_num returns the length of the number staring from index i
if(num_length = get_num(line, i))
{
printf("\n Error : Invalid parameter - not a number \n");
return;
``}

help = (char *)malloc(num_length + 1);
if(help == NULL){
printf("\n |*An error accoured : Failed to allocate memory*| \n");
exit(0);
}
r_part = help;
memcpy(r_part, &line[i], num_length);
r_part[num_length] = '\0';
re_part = atof(r_part);
free(r_part);

我需要 num 为给定数字 - “3.444”

最佳答案

您应该使用已有的“字符串”函数,而不是编写自己的解析。像这样的东西:

#include <stdio.h>
#include <string.h>

int main() {
char *line = "The num is, 3.444 bnmbnm";
char* p = strchr(line, ','); // Find the first comma
if (p)
{
float f;
if (sscanf(p+1, "%f", &f) ==1) // Try to read a float starting after the comma (i.e. the +1)
{
printf("Found %f\n", f);
}
else
{
printf("No float after comma\n");
}
}
else
{
printf("No comma\n");
}
return 0;
}

关于c - 如何获取给定字符串的子串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53976037/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com