StringiFor unescape test.
| Type | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|
| type(string) | :: | astring | A string. |
|||
| logical | :: | test_passed(2) | List of passed tests. |
program unescape
!-----------------------------------------------------------------------------------------------------------------------------------
!< StringiFor `unescape` test.
!-----------------------------------------------------------------------------------------------------------------------------------
use, intrinsic :: iso_fortran_env, only : stdout => output_unit
use stringifor, only : string
!-----------------------------------------------------------------------------------------------------------------------------------
!-----------------------------------------------------------------------------------------------------------------------------------
implicit none
type(string) :: astring !< A string.
logical :: test_passed(2) !< List of passed tests.
!-----------------------------------------------------------------------------------------------------------------------------------
!-----------------------------------------------------------------------------------------------------------------------------------
test_passed = .false.
astring = '^\\s \\d+\\s*'
write(stdout, "(A)") 'Original: "'//astring//'"'
test_passed(1) = (astring%unescape(to_unescape='\')//''=='^\s \d+\s*')
write(stdout, "(A,L1)") 'Escaped: "'//astring%unescape(to_unescape='\')//'", is correct? ', test_passed(1)
test_passed(2) = (astring%unescape(to_unescape='s')//''=='^\s \\d+\s*')
write(stdout, "(A,L1)") 'Escaped: "'//astring%unescape(to_unescape='s')//'", is correct? ', test_passed(2)
write(stdout, "(A,L1)") new_line('a')//'Are all tests passed? ', all(test_passed)
stop
!-----------------------------------------------------------------------------------------------------------------------------------
endprogram unescape