ISUPPER(3) BSD Library Functions Manual ISUPPER(3)NAME
isupper -- upper-case character test
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
#include <ctype.h>
int
isupper(int c);
DESCRIPTION
The isupper() function tests for any upper-case letter. The value of the argument must be representable as an unsigned char or the value of
EOF.
In the ASCII character set, this includes the following characters (with their numeric values shown in octal):
101 ``A'' 102 ``B'' 103 ``C'' 104 ``D'' 105 ``E''
106 ``F'' 107 ``G'' 110 ``H'' 111 ``I'' 112 ``J''
113 ``K'' 114 ``L'' 115 ``M'' 116 ``N'' 117 ``O''
120 ``P'' 121 ``Q'' 122 ``R'' 123 ``S'' 124 ``T''
125 ``U'' 126 ``V'' 127 ``W'' 130 ``X'' 131 ``Y''
132 ``Z''
RETURN VALUES
The isupper() function returns zero if the character tests false and returns non-zero if the character tests true.
COMPATIBILITY
The 4.4BSD extension of accepting arguments outside of the range of the unsigned char type in locales with large character sets is considered
obsolete and may not be supported in future releases. The iswupper() function should be used instead.
SEE ALSO ctype(3), iswupper(3), toupper(3), ascii(7)STANDARDS
The isupper() function conforms to ISO/IEC 9899:1990 (``ISO C90'').
BSD July 17, 2005 BSD
Check Out this Related Man Page
ISUPPER(3) BSD Library Functions Manual ISUPPER(3)NAME
isupper -- upper-case character test
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
#include <ctype.h>
int
isupper(int c);
DESCRIPTION
The isupper() function tests for any upper-case letter. The value of the argument must be representable as an unsigned char or the value of
EOF.
In the ASCII character set, this includes the following characters (preceded by their numeric values, in octal):
101 ``A'' 102 ``B'' 103 ``C'' 104 ``D'' 105 ``E''
106 ``F'' 107 ``G'' 110 ``H'' 111 ``I'' 112 ``J''
113 ``K'' 114 ``L'' 115 ``M'' 116 ``N'' 117 ``O''
120 ``P'' 121 ``Q'' 122 ``R'' 123 ``S'' 124 ``T''
125 ``U'' 126 ``V'' 127 ``W'' 130 ``X'' 131 ``Y''
132 ``Z''
RETURN VALUES
The isupper() function returns zero if the character tests false and returns non-zero if the character tests true.
COMPATIBILITY
The 4.4BSD extension of accepting arguments outside of the range of the unsigned char type in locales with large character sets is considered
obsolete and may not be supported in future releases. The iswupper() function should be used instead.
SEE ALSO ctype(3), isalnum_l(3), iswupper(3), toupper(3), ascii(7)STANDARDS
The isupper() function conforms to ISO/IEC 9899:1990 (``ISO C90'').
BSD July 17, 2005 BSD
Hi! ;)
I have a file:
122 10/11/04
123 10/11/04
124 10/11/04
126 10/11/04
127 10/11/04
130 10/11/04
131 10/11/04
132 10/11/04
133 10/11/04
Between the number and the date I have a tabulation.
I want replace the tabulation with ;
I have tried... (3 Replies)
To all Guru
I have a file like
test.txt
111,122,212,123
data11,date12, data13, data14...data1n
data21,date22, data23, data24...data2n
data31,date32, data33, data34...data3n
...
...
..
datan1,daten2, datan3, datan4...datann
END
I have to load this data into oracle , where first... (1 Reply)
Hi All,
I have file
i have values like
----
112
113
109
112
109
I have another file
cat supplierDetails.txt
-------------------------
112|MIMUS|krishnaveni@google.com
113|MIMIRE|krishnaveni@google.com
114|MIMCHN|krishnaveni@google.com
115|CEL|krishnaveni@google.com... (10 Replies)
I have a fixed length file that need to be sorted according to the following rule
IF B=1 ORDER by A,B
Else ORDER by A,C
Input file is
ABC
131
112
122
231
212
222
Output needed
ABC
112
131
122
212
231
222 (1 Reply)
I have file like this
120, rahim, d40
115, rahul, d40
113, begum, d40
I want to group this file like this
120, rahim, d40
115, rahul,
113, begum,
can any one help me on this
thanks in advance (1 Reply)
IBM certification exam 223 (System p Administrator) was recently replaced with exam 104 (Aix 6.1 Administrator). Is there anyone knowledgable of the major changes within the two tests? Thanks in advance! (0 Replies)
My file looks like this
But I need to move the frequency value (Freq) to the second position, leaving intact the numbers at the top. The resulting file should look like this
Thanks in advance! (3 Replies)
I have two files of the type
111 222 10
112 223 20
113 224 30
114 225 20
and
111 222 9
444 555 8
113 224 32
666 777 25
I want to merge files based on 1 and 2nd column. if 1st and 2nd column are unique in file 1 and 2 keep... (3 Replies)
Hi
I have a requirement where in I need to check 103,104,105 letters in each line and if it equal to MAS then I need to copy the whole line (Till End) to a file.
In case if there are 10 lines, all these lines must be copied to a file.
Can you please help me with script. (1 Reply)
Hi
I have a requirement where in I need to check 103,104,105 letters in each line and if it equal to MAS then I need to copy the whole line (Till End) to a file.
In case if there are 10 lines, all these lines must be copied to a file.
Can you please help me with script. (1 Reply)
Dear Help,
I have an input file which looks like -
121 300
122 345
124 567
127 234
$1 has 125 and 126 missing. How can I output those missing values?
Thanks (6 Replies)
I have a file with lines like:
111 12 7
111 13 8
112 12 9
115 31 3
120 31 9
123 10 7
125 12
I want to make a script which, split the first column into parts (101-110, 111-120...), and make directories for its part with name (101-110, 111-120...) Also i want in every directory include... (7 Replies)