volatile_doctest Program

Uses

  • program~~volatile_doctest~166~~UsesGraph program~volatile_doctest~166 volatile_doctest module~stringifor_string_t stringifor_string_t program~volatile_doctest~166->module~stringifor_string_t iso_fortran_env iso_fortran_env module~stringifor_string_t->iso_fortran_env module~penf~2 penf module~stringifor_string_t->module~penf~2 module~face face module~stringifor_string_t->module~face module~befor64~4 befor64 module~stringifor_string_t->module~befor64~4 module~penf_b_size penf_b_size module~penf~2->module~penf_b_size module~penf_stringify~3 penf_stringify module~penf~2->module~penf_stringify~3 module~penf_global_parameters_variables~2 penf_global_parameters_variables module~penf~2->module~penf_global_parameters_variables~2 module~face->iso_fortran_env module~befor64~4->module~penf~2 module~befor64_pack_data_m~4 befor64_pack_data_m module~befor64~4->module~befor64_pack_data_m~4 module~penf_b_size->module~penf_global_parameters_variables~2 module~penf_stringify~3->iso_fortran_env module~penf_stringify~3->module~penf_b_size module~penf_stringify~3->module~penf_global_parameters_variables~2 module~befor64_pack_data_m~4->module~penf~2

Contents

Source Code


Variables

TypeAttributesNameInitial
type(string) :: astring
type(string) :: anotherstring
character(len=:), allocatable:: acharacter
integer :: istart
integer :: iend
logical :: test_passed(5)

Source Code

program volatile_doctest
use stringifor_string_t
 type(string) :: astring
 type(string) :: anotherstring
 character(len=:), allocatable :: acharacter
 integer :: istart
 integer :: iend
 logical :: test_passed(5)
 astring = '<test> <first> hello </first> <first> not the first </first> </test>'
 anotherstring = astring%search(tag_start='<first>', tag_end='</first>')
 test_passed(1) = anotherstring//''=='<first> hello </first>'
 astring = '<test> <a> <a> <a> the nested a </a> </a> </a> </test>'
 anotherstring = astring%search(tag_start='<a>', tag_end='</a>')
 test_passed(2) = anotherstring//''=='<a> <a> <a> the nested a </a> </a> </a>'
 call astring%free
 anotherstring = '<test> <a> <a> <a> the nested a </a> </a> </a> </test>'
 astring = astring%search(in_string=anotherstring, tag_start='<a>', tag_end='</a>')
 test_passed(3) = astring//''=='<a> <a> <a> the nested a </a> </a> </a>'
 call astring%free
 acharacter = '<test> <a> <a> <a> the nested a </a> </a> </a> </test>'
 astring = astring%search(in_character=acharacter, tag_start='<a>', tag_end='</a>')
 test_passed(4) = astring//''=='<a> <a> <a> the nested a </a> </a> </a>'
 acharacter = '<test> <first> hello </first> <sec> <sec>not the first</sec> </sec> </test>'
 astring = astring%search(in_character=acharacter, tag_start='<sec>', tag_end='</sec>', istart=istart, iend=iend)
 test_passed(5) = astring//''==acharacter(31:67)
 print '(L1)', all(test_passed)
endprogram volatile_doctest