Load the JSON data from a string.
Load JSON from a string:
type(json_file) :: f
call f%deserialize('{ "name": "Leonidas" }')
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(json_file), | intent(inout) | :: | me | |||
character(kind=CK,len=*), | intent(in) | :: | str | string to load JSON data from |
subroutine json_file_load_from_string(me, str)
implicit none
class(json_file),intent(inout) :: me
character(kind=CK,len=*),intent(in) :: str !! string to load JSON data from
call me%core%deserialize(me%p, str)
end subroutine json_file_load_from_string