/[lmdze]/trunk/IOIPSL/Stringop/nocomma.f
ViewVC logotype

Contents of /trunk/IOIPSL/Stringop/nocomma.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 76 - (show annotations)
Fri Nov 15 18:45:49 2013 UTC (10 years, 6 months ago) by guez
Original Path: trunk/IOIPSL/Stringop/nocomma.f90
File size: 507 byte(s)
Moved everything out of libf.
1 module nocomma_m
2
3 implicit none
4
5 contains
6
7 !=
8 SUBROUTINE nocomma (str)
9 !---------------------------------------------------------------------
10 !-
11 !---------------------------------------------------------------------
12 IMPLICIT NONE
13 !-
14 CHARACTER(LEN=*) :: str
15 !-
16 INTEGER :: i
17 !---------------------------------------------------------------------
18 DO i=1,LEN_TRIM(str)
19 IF (str(i:i) == ',') str(i:i) = ' '
20 ENDDO
21 !------------------------
22 END SUBROUTINE nocomma
23
24 end module nocomma_m

  ViewVC Help
Powered by ViewVC 1.1.21