strstr(3) Library Functions Manual strstr(3)

strstr, strcasestr - localiza uma subseqüencia

Biblioteca C Padrão (libc, -lc)

#include <string.h>
char *strstr(const char *palheiro, const char *agulha);
#define _GNU_SOURCE         /* Veja feature_test_macros(7) */
#include <string.h>
char *strcasestr(const char *palheiro, const char *agulha);

The strstr() function finds the first occurrence of the substring needle in the string haystack. The terminating null bytes ('\0') are not compared.

The strcasestr() function is like strstr(), but ignores the case of both arguments.

These functions return a pointer to the beginning of the located substring, or NULL if the substring is not found.

If needle is the empty string, the return value is always haystack itself.

Para uma explicação dos termos usados nesta seção, consulte attributes(7).

Interface Atributo Valor
strstr() Thread safety MT-Safe
strcasestr() Thread safety MT-Safe locale

C11, POSIX.1-2008.
GNU.

POSIX.1-2001, C89.
GNU.

memchr(3), memmem(3), strcasecmp(3), strchr(3), string(3), strpbrk(3), strsep(3), strspn(3), strtok(3), wcsstr(3)

A tradução para português brasileiro desta página man foi criada por Marcelo M. de Abreu <mmabreu@terra.com.br> e André Luiz Fassone <lonely_wolf@ig.com.br>

Esta tradução é uma documentação livre; leia a Licença Pública Geral GNU Versão 3 ou posterior para as condições de direitos autorais. Nenhuma responsabilidade é aceita.

Se você encontrar algum erro na tradução desta página de manual, envie um e-mail para a lista de discussão de tradutores.

31 outubro 2023 Linux man-pages 6.06