gpt4 book ai didi

C获取字符串中的一部分字符串

转载 作者:太空狗 更新时间:2023-10-29 15:19:34 26 4
gpt4 key购买 nike

我正在尝试编写解析 HTTP GET 请求并检查“主机”是否为 www.bbc.co.uk 的代码。

这是我的工作代码:

char data[] = "GET /news/ HTTP/1.1\nHost: www.bbc.co.uk\nConnection: keep-alive";
unsigned int size = strlen(data);

if (size>3 && data[0] == 'G' && data[1] == 'E' && data[2] == 'T'){ //If GET Request
int host_index = -1;

for (int i=4; i<size-4; i++){
if (data[i] == 'H' && data[i+1] == 'o' && data[i+2] == 's' && data[i+3] == 't'
&& data[i+4] == ':' && data[i+5] == ' '){
host_index = i+6;
}
}

if ( host_index != -1 && size > host_index+11 &&
data[host_index] == 'w' && data[host_index+1] == 'w' && data[host_index+2] == 'w' &&
data[host_index+3] == '.' && data[host_index+4] == 'b' && data[host_index+5] == 'b' &&
data[host_index+6] == 'c' && data[host_index+7] == '.' && data[host_index+8] == 'c' &&
data[host_index+9] == 'o' && data[host_index+10] == '.' && data[host_index+11] == 'u' &&
data[host_index+12] == 'k')
{
printf("BBC WEBSITE!\n");
}

}

我认为这是很多代码而不是很多。我怎样才能使这段代码更紧凑?

[请保持纯 C。没有第 3 方库]

非常感谢!

最佳答案

为什么不使用 strstr() ?

使用 strstr() 将大字符串拆分成 block ,然后通过单独的例程解析较小的 block

关于C获取字符串中的一部分字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27301956/

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