str_startswith Function

public pure function str_startswith(str, prefix, start, finish) result(res)

Returns .true. if the string str starts with prefix, otherwise returns .false.. With optional start, test beginning at that position. With optional finish, stop comparing beyond that position.

Arguments

Type IntentOptional AttributesName
character(len=*), intent(in) :: str
character(len=*), intent(in) :: prefix
integer, intent(in), optional :: start
integer, intent(in), optional :: finish

Return Value logical


Called by

proc~~str_startswith~~CalledByGraph proc~str_startswith str_startswith proc~read_config read_config proc~read_config->proc~str_startswith proc~run run proc~run->proc~read_config program~main main program~main->proc~run

Contents

None