-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.f90
46 lines (40 loc) · 1.06 KB
/
main.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
program test_split
!! Examples from https://j3-fortran.org/doc/year/20/20-007.pdf,
!! Section 16.9.194.
use fortran202x_split, only: split
implicit none
integer, allocatable :: first(:), last(:)
character(:), allocatable :: string, set, tokens(:)
character, allocatable :: separator(:)
integer :: istart, iend, n, p
print *, 'Example 1:'
string = 'first,second,third'
set = ',;'
call split(string, set, tokens)
do n = 1, size(tokens)
print *, 'n, tokens(n) =', n, tokens(n)
end do
call split(string, set, tokens, separator)
do n = 1, size(separator)
print *, 'n, separator(n) =', n, separator(n)
end do
print *
print *, 'Example 2:'
string = 'first,second,,forth'
set = ',;'
call split(string, set, first, last)
print *, 'first =', first
print *, 'last =', last
print *
print *, 'Example 3:'
string = 'one,last example'
set = ', '
p = 0
do
if (p > len(string)) exit
istart = p + 1
call split(string, set, p)
iend = p - 1
print '(t7, a)', string(istart:iend)
end do
end program test_split