In Fortran, you cannot allocate dynamically a string of a given dynamic length. It means that CHARACTER(LEN=100) and CHARACTER(LEN=101) are two different datatypes, like they are CHARACTER(LEN=100) and INTEGER.
Suppose that you don't know at compile time how much you are going to read, but you learn it at runtime (say 200) and you have to allocate a string of 200 to hold it. You can't. In C you can (you malloc the desired size and cast the void * to char *)
In other words, this is forbidden
integer :: strlen
call getLen(strlen)
character(len=strlen) :: string
call getString(string)
However, there's a trick. You can however allocate it "dynamically" if you pass the size as a parameter in a function, and then allocate a string on the stack using the passed parameter as a LEN. In other words this will work
integer :: strlen
call getLen(strlen)
call helper_func(strlen)
...
subroutine helper_func(strlen)
implicit none
integer, intent(in) :: strlen
character(len=strlen) :: string
call getString(string)
end subroutine
In principle, now you could declare character(len=strlen), allocatable :: str_ptr and juggle the pointer around.