如何检查字符串是否以C中的某个字符串开头?

ax6ht2ek  于 2023-11-16  发布在  其他
关注(0)|答案(6)|浏览(171)

例如,要验证有效URL,我想执行以下操作

char usUrl[MAX] = "http://www.stackoverflow"

if(usUrl[0] == 'h'
   && usUrl[1] == 't'
   && usUrl[2] == 't'
   && usUrl[3] == 'p'
   && usUrl[4] == ':'
   && usUrl[5] == '/'
   && usUrl[6] == '/') { // what should be in this something?
    printf("The Url starts with http:// \n");
}

字符串
或者,我考虑过使用strcmp(str, str2) == 0,但这一定非常复杂。
有没有一个标准的C函数可以做这样的事情?

pxy2qtax

pxy2qtax1#

bool StartsWith(const char *a, const char *b)
{
   if(strncmp(a, b, strlen(b)) == 0) return 1;
   return 0;
}

...

if(StartsWith("http://stackoverflow.com", "http://")) { 
   // do something
}else {
  // do something else
}

字符串
您还需要#include<stdbool.h>,或者只需将bool替换为int

k4aesqcs

k4aesqcs2#

我的建议是:

char *checker = NULL;

checker = strstr(usUrl, "http://");
if(checker == usUrl)
{
    //you found the match

}

字符串
只有当字符串以'http://'开头,而不是类似于'XXXhttp://'的字符串时,这才匹配
您也可以使用strcasestr,如果它在您的平台上可用。

ogsagwnx

ogsagwnx3#

使用显式循环的解决方案:

#include <stdio.h>
#include <stddef.h>
#include <stdbool.h>

bool startsWith(const char *haystack, const char *needle) {
    for (size_t i = 0; needle[i] != '\0'; i++) {
        if (haystack[i] != needle[i]) {
            return false;
        }
    }

    return true;
}

int main() {
    printf("%d\n", startsWith("foobar", "foo")); // 1, true
    printf("%d\n", startsWith("foobar", "bar")); // 0, false
}

字符串

ie3xauqp

ie3xauqp4#

下面应该检查usUrl是否以“http://"开头:

strstr(usUrl, "http://") == usUrl ;

字符串

mutmk8jj

mutmk8jj5#

这个线程中的一些答案包含有效的答案,但是当没有必要这样做时,通过将解决方案 Package 到一个函数中,最终使事情变得非常复杂。答案相当简单:

if( strncmp(stringA, stringB, strlen(stringB)) == 0 )
{
    printf("stringA begins by stringB");
} else {
    printf("stringA does not begin by stringB");
}

字符串

lbsnaicq

lbsnaicq6#

strstr(str1, "http://www.stackoverflow")是另一个可以用于此目的的函数。

相关问题