forked from fortran-lang/stdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstdlib_strings.fypp
520 lines (425 loc) · 18.8 KB
/
stdlib_strings.fypp
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
! SPDX-Identifier: MIT
#:include "common.fypp"
#:set KINDS_TYPES = REAL_KINDS_TYPES + INT_KINDS_TYPES + LOG_KINDS_TYPES &
& + CMPLX_KINDS_TYPES
!> This module implements basic string handling routines.
!>
!> The specification of this module is available [here](../page/specs/stdlib_strings.html).
module stdlib_strings
use stdlib_ascii, only: whitespace
use stdlib_string_type, only: string_type, char, verify
use stdlib_optval, only: optval
use stdlib_kinds, only: sp, dp, qp, int8, int16, int32, int64, lk, c_bool
implicit none
private
public :: format_string
public :: strip, chomp
public :: starts_with, ends_with
public :: slice, find
interface format_string
!! version: experimental
!!
!! Format other types as character sequence.
!! ([Specification](../page/specs/stdlib_strings.html#description))
#:for kind, type in KINDS_TYPES
pure module function format_string_${type[0]}$${kind}$(val, fmt) result(string)
character(len=:), allocatable :: string
${type}$, intent(in) :: val
character(len=*), intent(in), optional :: fmt
end function format_string_${type[0]}$${kind}$
#:endfor
end interface format_string
!> Remove leading and trailing whitespace characters.
!>
!> Version: experimental
interface strip
module procedure :: strip_string
module procedure :: strip_char
end interface strip
!> Remove trailing characters in set from string.
!> If no character set is provided trailing whitespace is removed.
!>
!> Version: experimental
interface chomp
module procedure :: chomp_string
module procedure :: chomp_char
module procedure :: chomp_set_string_char
module procedure :: chomp_set_char_char
module procedure :: chomp_substring_string_string
module procedure :: chomp_substring_char_string
module procedure :: chomp_substring_string_char
module procedure :: chomp_substring_char_char
end interface chomp
!> Check whether a string starts with substring or not
!>
!> Version: experimental
interface starts_with
module procedure :: starts_with_string_string
module procedure :: starts_with_string_char
module procedure :: starts_with_char_string
module procedure :: starts_with_char_char
end interface starts_with
!> Check whether a string ends with substring or not
!>
!> Version: experimental
interface ends_with
module procedure :: ends_with_string_string
module procedure :: ends_with_string_char
module procedure :: ends_with_char_string
module procedure :: ends_with_char_char
end interface ends_with
!> Extracts characters from the input string to return a new string
!>
!> Version: experimental
interface slice
module procedure :: slice_string
module procedure :: slice_char
end interface slice
!> Finds the starting index of substring 'pattern' in the input 'string'
!> [Specifications](link to the specs - to be completed)
!>
!> Version: experimental
interface find
module procedure :: find_string_string
module procedure :: find_string_char
module procedure :: find_char_string
module procedure :: find_char_char
end interface find
contains
!> Remove leading and trailing whitespace characters.
pure function strip_string(string) result(stripped_string)
! Avoid polluting the module scope and use the assignment only in this scope
use stdlib_string_type, only : assignment(=)
type(string_type), intent(in) :: string
type(string_type) :: stripped_string
stripped_string = strip(char(string))
end function strip_string
!> Remove leading and trailing whitespace characters.
pure function strip_char(string) result(stripped_string)
character(len=*), intent(in) :: string
character(len=:), allocatable :: stripped_string
integer :: first, last
first = verify(string, whitespace)
if (first == 0) then
stripped_string = ""
else
last = verify(string, whitespace, back=.true.)
stripped_string = string(first:last)
end if
end function strip_char
!> Remove trailing characters in set from string.
!> Default character set variant where trailing whitespace is removed.
pure function chomp_string(string) result(chomped_string)
! Avoid polluting the module scope and use the assignment only in this scope
use stdlib_string_type, only : assignment(=)
type(string_type), intent(in) :: string
type(string_type) :: chomped_string
integer :: last
last = verify(string, whitespace, back=.true.)
chomped_string = char(string, 1, last)
end function chomp_string
!> Remove trailing characters in set from string.
!> Default character set variant where trailing whitespace is removed.
pure function chomp_char(string) result(chomped_string)
character(len=*), intent(in) :: string
character(len=:), allocatable :: chomped_string
integer :: last
last = verify(string, whitespace, back=.true.)
chomped_string = string(1:last)
end function chomp_char
!> Remove trailing characters in set from string.
pure function chomp_set_string_char(string, set) result(chomped_string)
! Avoid polluting the module scope and use the assignment only in this scope
use stdlib_string_type, only : assignment(=)
type(string_type), intent(in) :: string
character(len=1), intent(in) :: set(:)
type(string_type) :: chomped_string
chomped_string = chomp(char(string), set)
end function chomp_set_string_char
!> Remove trailing characters in set from string.
pure function chomp_set_char_char(string, set) result(chomped_string)
character(len=*), intent(in) :: string
character(len=1), intent(in) :: set(:)
character(len=:), allocatable :: chomped_string
integer :: last
last = verify(string, set_to_string(set), back=.true.)
chomped_string = string(1:last)
end function chomp_set_char_char
!> Remove trailing substrings from string.
pure function chomp_substring_string_string(string, substring) result(chomped_string)
! Avoid polluting the module scope and use the assignment only in this scope
use stdlib_string_type, only : assignment(=)
type(string_type), intent(in) :: string
type(string_type), intent(in) :: substring
type(string_type) :: chomped_string
chomped_string = chomp(char(string), char(substring))
end function chomp_substring_string_string
!> Remove trailing substrings from string.
pure function chomp_substring_string_char(string, substring) result(chomped_string)
! Avoid polluting the module scope and use the assignment only in this scope
use stdlib_string_type, only : assignment(=)
type(string_type), intent(in) :: string
character(len=*), intent(in) :: substring
type(string_type) :: chomped_string
chomped_string = chomp(char(string), substring)
end function chomp_substring_string_char
!> Remove trailing substrings from string.
pure function chomp_substring_char_string(string, substring) result(chomped_string)
character(len=*), intent(in) :: string
type(string_type), intent(in) :: substring
character(len=:), allocatable :: chomped_string
chomped_string = chomp(string, char(substring))
end function chomp_substring_char_string
!> Remove trailing substrings from string.
pure function chomp_substring_char_char(string, substring) result(chomped_string)
character(len=*), intent(in) :: string
character(len=*), intent(in) :: substring
character(len=:), allocatable :: chomped_string
integer :: last, nsub
last = len(string)
nsub = len(substring)
if (nsub > 0) then
do while(string(last-nsub+1:last) == substring)
last = last - nsub
end do
end if
chomped_string = string(1:last)
end function chomp_substring_char_char
!> Implementation to transfer a set of characters to a string representing the set.
!>
!> This function is internal and not part of the public API.
pure function set_to_string(set) result(string)
character(len=1), intent(in) :: set(:)
character(len=size(set)) :: string
string = transfer(set, string)
end function set_to_string
!> Check whether a string starts with substring or not
pure function starts_with_char_char(string, substring) result(match)
character(len=*), intent(in) :: string
character(len=*), intent(in) :: substring
logical :: match
integer :: nsub
nsub = len(substring)
if (len(string) < nsub) then
match = .false.
return
end if
match = string(1:nsub) == substring
end function starts_with_char_char
!> Check whether a string starts with substring or not
elemental function starts_with_string_char(string, substring) result(match)
type(string_type), intent(in) :: string
character(len=*), intent(in) :: substring
logical :: match
match = starts_with(char(string), substring)
end function starts_with_string_char
!> Check whether a string starts with substring or not
elemental function starts_with_char_string(string, substring) result(match)
character(len=*), intent(in) :: string
type(string_type), intent(in) :: substring
logical :: match
match = starts_with(string, char(substring))
end function starts_with_char_string
!> Check whether a string starts with substring or not
elemental function starts_with_string_string(string, substring) result(match)
type(string_type), intent(in) :: string
type(string_type), intent(in) :: substring
logical :: match
match = starts_with(char(string), char(substring))
end function starts_with_string_string
!> Check whether a string ends with substring or not
pure function ends_with_char_char(string, substring) result(match)
character(len=*), intent(in) :: string
character(len=*), intent(in) :: substring
logical :: match
integer :: last, nsub
last = len(string)
nsub = len(substring)
if (last < nsub) then
match = .false.
return
end if
match = string(last-nsub+1:last) == substring
end function ends_with_char_char
!> Check whether a string ends with substring or not
elemental function ends_with_string_char(string, substring) result(match)
type(string_type), intent(in) :: string
character(len=*), intent(in) :: substring
logical :: match
match = ends_with(char(string), substring)
end function ends_with_string_char
!> Check whether a string ends with substring or not
elemental function ends_with_char_string(string, substring) result(match)
character(len=*), intent(in) :: string
type(string_type), intent(in) :: substring
logical :: match
match = ends_with(string, char(substring))
end function ends_with_char_string
!> Check whether a string ends with substring or not
elemental function ends_with_string_string(string, substring) result(match)
type(string_type), intent(in) :: string
type(string_type), intent(in) :: substring
logical :: match
match = ends_with(char(string), char(substring))
end function ends_with_string_string
!> Extract the characters from the region between 'first' and 'last' index (both inclusive)
!> of the input 'string' by taking strides of length 'stride'
!> Returns a new string
elemental function slice_string(string, first, last, stride) result(sliced_string)
type(string_type), intent(in) :: string
integer, intent(in), optional :: first, last, stride
type(string_type) :: sliced_string
sliced_string = string_type(slice(char(string), first, last, stride))
end function slice_string
!> Extract the characters from the region between 'first' and 'last' index (both inclusive)
!> of the input 'string' by taking strides of length 'stride'
!> Returns a new string
pure function slice_char(string, first, last, stride) result(sliced_string)
character(len=*), intent(in) :: string
integer, intent(in), optional :: first, last, stride
integer :: first_index, last_index, stride_vector, strides_taken, length_string, i, j
character(len=:), allocatable :: sliced_string
length_string = len(string)
first_index = 0 ! first_index = -infinity
last_index = length_string + 1 ! last_index = +infinity
stride_vector = 1
if (present(stride)) then
if (stride /= 0) then
if (stride < 0) then
first_index = length_string + 1 ! first_index = +infinity
last_index = 0 ! last_index = -infinity
end if
stride_vector = stride
end if
else
if (present(first) .and. present(last)) then
if (last < first) then
stride_vector = -1
end if
end if
end if
if (present(first)) then
first_index = first
end if
if (present(last)) then
last_index = last
end if
if (stride_vector > 0) then
first_index = max(first_index, 1)
last_index = min(last_index, length_string)
else
first_index = min(first_index, length_string)
last_index = max(last_index, 1)
end if
strides_taken = floor( real(last_index - first_index)/real(stride_vector) )
allocate(character(len=max(0, strides_taken + 1)) :: sliced_string)
j = 1
do i = first_index, last_index, stride_vector
sliced_string(j:j) = string(i:i)
j = j + 1
end do
end function slice_char
!> Returns the starting index of the 'occurrence'th occurrence of substring 'pattern'
!> in input 'string'
!> Returns an integer
elemental function find_string_string(string, pattern, occurrence, consider_overlapping) result(res)
type(string_type), intent(in) :: string
type(string_type), intent(in) :: pattern
integer, intent(in), optional :: occurrence
logical, intent(in), optional :: consider_overlapping
integer :: res
res = find(char(string), char(pattern), occurrence, consider_overlapping)
end function find_string_string
!> Returns the starting index of the 'occurrence'th occurrence of substring 'pattern'
!> in input 'string'
!> Returns an integer
elemental function find_string_char(string, pattern, occurrence, consider_overlapping) result(res)
type(string_type), intent(in) :: string
character(len=*), intent(in) :: pattern
integer, intent(in), optional :: occurrence
logical, intent(in), optional :: consider_overlapping
integer :: res
res = find(char(string), pattern, occurrence, consider_overlapping)
end function find_string_char
!> Returns the starting index of the 'occurrence'th occurrence of substring 'pattern'
!> in input 'string'
!> Returns an integer
elemental function find_char_string(string, pattern, occurrence, consider_overlapping) result(res)
character(len=*), intent(in) :: string
type(string_type), intent(in) :: pattern
integer, intent(in), optional :: occurrence
logical, intent(in), optional :: consider_overlapping
integer :: res
res = find(string, char(pattern), occurrence, consider_overlapping)
end function find_char_string
!> Returns the starting index of the 'occurrence'th occurrence of substring 'pattern'
!> in input 'string'
!> Returns an integer
elemental function find_char_char(string, pattern, occurrence, consider_overlapping) result(res)
character(len=*), intent(in) :: string
character(len=*), intent(in) :: pattern
integer, intent(in), optional :: occurrence
logical, intent(in), optional :: consider_overlapping
integer :: lps_array(len(pattern))
integer :: res, s_i, p_i, length_string, length_pattern, occurrence_
logical :: consider_overlapping_
consider_overlapping_ = optval(consider_overlapping, .true.)
occurrence_ = optval(occurrence, 1)
res = 0
length_string = len(string)
length_pattern = len(pattern)
if (length_pattern > 0 .and. length_pattern <= length_string &
& .and. occurrence_ > 0) then
lps_array = compute_lps(pattern)
s_i = 1
p_i = 1
do while(s_i <= length_string)
if (string(s_i:s_i) == pattern(p_i:p_i)) then
if (p_i == length_pattern) then
occurrence_ = occurrence_ - 1
if (occurrence_ == 0) then
res = s_i - length_pattern + 1
exit
else if (consider_overlapping_) then
p_i = lps_array(p_i)
else
p_i = 0
end if
end if
s_i = s_i + 1
p_i = p_i + 1
else if (p_i > 1) then
p_i = lps_array(p_i - 1) + 1
else
s_i = s_i + 1
end if
end do
end if
end function find_char_char
!> Computes longest prefix suffix for each index of the input 'string'
!>
!> Returns an array of integers
pure function compute_lps(string) result(lps_array)
character(len=*), intent(in) :: string
integer :: lps_array(len(string))
integer :: i, j, length_string
length_string = len(string)
if (length_string > 0) then
lps_array(1) = 0
i = 2
j = 1
do while (i <= length_string)
if (string(j:j) == string(i:i)) then
lps_array(i) = j
i = i + 1
j = j + 1
else if (j > 1) then
j = lps_array(j - 1) + 1
else
lps_array(i) = 0
i = i + 1
end if
end do
end if
end function compute_lps
end module stdlib_strings