NCEPLIBS-bufr
11.7.1
Toggle main menu visibility
Main Page
Related Pages
Modules
Modules List
Module Members
All
b
c
d
e
g
i
j
k
l
m
n
o
s
t
u
v
Functions/Subroutines
Variables
b
c
i
j
k
l
m
n
t
v
Data Types List
Data Types List
Data Fields
All
Variables
Files
File List
Globals
All
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
Functions/Subroutines
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
Variables
▼
NCEPLIBS-bufr
Master BUFR Tables
DX BUFR Tables
Release Notes
User Guide
Sample Utilities
►
Modules
►
Data Types List
▼
Files
►
File List
►
Globals
•
All
Data Structures
Namespaces
Files
Functions
Variables
Pages
capit.f
Go to the documentation of this file.
1
C> @file
2
C> @brief Capitalize a character string
3
4
C> This subroutine capitalizes all of the alphabetic characters in
5
C> a string. The string is modified in place.
6
C>
7
C> @author J. Woollen
8
C> @date 2002-05-14
9
C>
10
C> @param[in,out] STR -- character*(*): String
11
C>
12
C> <b>Program History Log:</b>
13
C> | Date | Programmer | Comments |
14
C> | -----|------------|----------|
15
C> | 2002-05-14 | J. Woollen | Original author |
16
C> | 2012-03-02 | J. Ator | Changed name of ups array to upcs to avoid namespace contention with function ups() |
17
C>
18
SUBROUTINE
capit
(STR)
19
20
CHARACTER*(*)
STR
21
CHARACTER*26
UPCS,LWCS
22
DATA
upcs/
'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
/
23
DATA
lwcs/
'abcdefghijklmnopqrstuvwxyz'
/
24
25
DO
20 i=1,len(str)
26
DO
10 j=1,26
27
IF
(str(i:i).EQ.lwcs(j:j))
THEN
28
str(i:i) = upcs(j:j)
29
GOTO
20
30
ENDIF
31
10
CONTINUE
32
20
CONTINUE
33
34
RETURN
35
END
capit
subroutine capit(STR)
This subroutine capitalizes all of the alphabetic characters in a string.
Definition:
capit.f:19
nceplibs-bufr
src
capit.f
Generated by
1.9.4