utilities Module



Contents


Subroutines

public subroutine upper_case(string, start, finish)

Routine that converts a (sub-)string to uppercase author: P J Knight, CCFE, Culham Science Centre string : input string : character string of interest start : optional input integer : starting character for conversion finish : optional input integer : final character for conversion This routine converts the specified section of a string to uppercase. By default, the whole string will be converted. None

Arguments

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