Unix and Linux Discussions Tagged with null |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
5 |
4,894 |
AIX |
|
|
|
3 |
1,861 |
UNIX for Dummies Questions & Answers |
|
|
|
7 |
3,865 |
Shell Programming and Scripting |
|
|
|
2 |
3,353 |
Shell Programming and Scripting |
|
|
|
4 |
5,912 |
Shell Programming and Scripting |
|
|
|
3 |
5,162 |
Shell Programming and Scripting |
|
|
|
2 |
6,834 |
Programming |
|
|
|
3 |
4,076 |
Solaris |
|
|
|
3 |
14,387 |
Programming |
|
|
|
1 |
3,728 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
15,624 |
Programming |
|
|
|
2 |
4,538 |
Programming |
|
|
|
3 |
2,226 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
71,493 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
1,917 |
Shell Programming and Scripting |
|
|
|
5 |
4,201 |
Solaris |
|
|
|
3 |
11,883 |
Shell Programming and Scripting |
|
|
|
7 |
8,541 |
Shell Programming and Scripting |
|
|
|
2 |
10,504 |
Shell Programming and Scripting |
|
|
|
12 |
19,205 |
IP Networking |
|
|
|
4 |
41,403 |
Programming |
|
|
|
3 |
10,626 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,340 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
62,722 |
Shell Programming and Scripting |
|
|
|
0 |
3,039 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
9,370 |
Shell Programming and Scripting |
|
|
|
3 |
5,515 |
Shell Programming and Scripting |
|
|
|
1 |
3,155 |
Programming |
|
|
|
11 |
11,322 |
Shell Programming and Scripting |
|
|
|
12 |
41,882 |
Solaris |
|
|
|
4 |
6,344 |
UNIX for Advanced & Expert Users |
|
|
|
7 |
19,966 |
Shell Programming and Scripting |
|
|
|
4 |
4,999 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
3,941 |
Programming |
|
|
|
16 |
47,043 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
6,943 |
UNIX for Dummies Questions & Answers |
|
|
|
6 |
8,357 |
UNIX for Dummies Questions & Answers |
|
|
|
10 |
7,779 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
3,369 |
UNIX for Dummies Questions & Answers |
|
|
|
7 |
14,415 |
UNIX for Dummies Questions & Answers |
index(3C) Standard C Library Functions index(3C)
NAME
index, rindex - string operations
SYNOPSIS
#include <strings.h>
char *index(const char *s, int c);
char *rindex(const char *s, int c);
DESCRIPTION
The index() and rindex() functions operate on null-terminated strings.
The index() function returns a pointer to the first occurrence of character c in string s.
The rindex() function returns a pointer to the last occurrence of character c in string s.
Both index() and rindex() return a null pointer if c does not occur in the string. The null character terminating a string is considered
to be part of the string.
USAGE
On most modern computer systems, you can not use a null pointer to indicate a null string. A null pointer is an error and results in an
abort of the program. If you wish to indicate a null string, you must use a pointer that points to an explicit null string. On some
machines and with some implementations of the C programming language, a null pointer, if dereferenced, would yield a null string. Though
often used, this practice is not always portable. Programmers using a null pointer to represent an empty string should be aware of this
portability issue. Even on machines where dereferencing a null pointer does not cause an abort of the program, it does not necessarily
yield a null string.
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
|ATTRIBUTE TYPE |ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|Interface Stability |Standard |
+-----------------------------+-----------------------------+
SEE ALSO
bstring(3C), malloc(3C), string(3C), attributes(5), standards(5)
SunOS 5.11 24 Jul 2002 index(3C)