STRPBRK(3) BSD Library Functions Manual STRPBRK(3)NAME
strpbrk -- locate multiple characters in string
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
#include <string.h>
char *
strpbrk(const char *s, const char *charset);
DESCRIPTION
The strpbrk() function locates in the nul-terminated string s the first occurrence of any character in the string charset and returns a
pointer to this character. If no characters from charset occur anywhere in s strpbrk() returns NULL.
SEE ALSO index(3), memchr(3), rindex(3), strchr(3), strcspn(3), strrchr(3), strsep(3), strspn(3), strstr(3), strtok(3)STANDARDS
The strpbrk() function conforms to ANSI X3.159-1989 (``ANSI C89'').
BSD June 4, 1993 BSD
Check Out this Related Man Page
STRCSPN(3) BSD Library Functions Manual STRCSPN(3)NAME
strcspn -- span the complement of a string
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
#include <string.h>
size_t
strcspn(const char *s, const char *charset);
DESCRIPTION
The strcspn() function spans the initial part of the nul-terminated string s as long as the characters from s do not occur in string charset
(it spans the complement of charset).
RETURN VALUES
The strcspn() function returns the number of characters spanned.
EXAMPLES
The following call to strcspn() will return 3, since the first three characters of string s do not occur in string charset:
char *s = "foobar";
char *charset = "bar";
size_t span;
span = strcspn(s, charset);
SEE ALSO index(3), memchr(3), rindex(3), strchr(3), strpbrk(3), strrchr(3), strsep(3), strspn(3), strstr(3), strtok(3)STANDARDS
The strcspn() function conforms to ANSI X3.159-1989 (``ANSI C89'').
BSD August 11, 2002 BSD
Hi Friends,
When Iam running c program in redhat linux 7.3 version and PCQ Linux 8.0 version, its taking around 20 seconds. But when Iam running it in HP-UX Release 11i, its taking around 3 minutes. Can anyone throw light on this.
Thanks in advance,
Praveen. (11 Replies)
Hi everybody,
I wrote a small subroutine 'GetStringDelim()' to return a substring from a string enclosed by a string 'Limit1' and a char 'Limit2'. It works perfectly and I don't get an error message together with valgrind, if I set the 3rd parameter in GetStringDelim() to NULL (see below).
... (3 Replies)
Hi,
I am trying to fetch some values from db and spooling the output to a file.
when i query the db for the values, i get the values in following format.
PC_1 wf_test1 Test
PC_2 wf_test2 Test
PC_3 wf_test3 Test
But my spool file was created in following format.
PC_1
wf_test1
Test... (20 Replies)
Hi I have a string like
"12;13;14|aa = 14;bb = 15"
I have to store the values 12,13 and 14 in a list.
and aa,bb in another list.
Can anyone suggest me how to perform this in c++?
:confused:
Use code tags please, see PM. (2 Replies)
I've been having problems lately trying to do pattern matching in C while implementing wildcards. Take for instance the following code:
#include <sys/types.h>
#include <sys/stat.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <dirent.h>
#include <string.h> ... (14 Replies)