table of contents
- bookworm 4.18.1-1
- bookworm-backports 4.25.1-1~bpo12+1
- testing 4.25.1-1
- unstable 4.25.1-1
strstr(3) | Library Functions Manual | strstr(3) |
NOMBRE¶
strstr, strcasestr - localiza una subcadena
BIBLIOTECA¶
Biblioteca Estándar C (libc, -lc)
SINOPSIS¶
#include <string.h>
char *strstr(const char *pajar, const char *aguja);
#define _GNU_SOURCE /* Vea feature_test_macros(7) */ #include <string.h>
char *strcasestr(const char *pajar, const char *aguja);
DESCRIPCIÓN¶
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.
VALOR DEVUELTO¶
Estas funciones devuelven un puntero al comienzo de la subcadena o NULL si la subcadena no se encuentra.
If needle is the empty string, the return value is always haystack itself.
ATRIBUTOS¶
Para obtener una explicación de los términos usados en esta sección, véase attributes(7).
Interfaz | Atributo | Valor |
strstr() | Seguridad del hilo | Multi-hilo seguro |
strcasestr() | Seguridad del hilo | Configuración regional de multi-hilo seguro |
ESTÁNDARES¶
- strstr()
- C11, POSIX.1-2008.
- strcasestr()
- GNU.
HISTORIAL¶
- strstr()
- POSIX.1-2001, C89.
- strcasestr()
- GNU.
VÉASE TAMBIÉN¶
memchr(3), memmem(3), strcasecmp(3), strchr(3), string(3), strpbrk(3), strsep(3), strspn(3), strtok(3), wcsstr(3)
TRADUCCIÓN¶
La traducción al español de esta página del manual fue creada por Carlos Gomez Romero <cgomez@databasedm.es>, Juan Piernas <piernas@ditec.um.es> y Marcos Fouces <marcos@debian.org>
Esta traducción es documentación libre; lea la GNU General Public License Version 3 o posterior con respecto a las condiciones de copyright. No existe NINGUNA RESPONSABILIDAD.
Si encuentra algún error en la traducción de esta página del manual, envíe un correo electrónico a debian-l10n-spanish@lists.debian.org.
15 Junio 2024 | Páginas de Manual de Linux 6.9.1 |