Encode a string into the "JSON Pointer" RFC 6901 format.
It replaces ~
with ~0
and /
with ~1
.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(kind=CK,len=*), | intent(in) | :: | str |
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed arrows point from an interface to procedures which implement that interface. This could include the module procedures in a generic interface or the implementation in a submodule of an interface in a parent module. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
pure function encode_rfc6901(str) result(str_out)
implicit none
character(kind=CK,len=*),intent(in) :: str
character(kind=CK,len=:),allocatable :: str_out
str_out = str
call replace_string(str_out,tilde,tilde//CK_'0')
call replace_string(str_out,slash,tilde//CK_'1')
end function encode_rfc6901