to_lower Interface

public interface to_lower

Converts a string to all lowercase characters. Any characters that are already lowercase, a special symbol, or a numeric value are not modified.


Contents


Module Procedures

private pure function to_lower_char(x) result(rst)

Converts a string to all lowercase characters. Any characters that are already lowercase, a special symbol, or a numeric value are not modified.

Arguments

Type IntentOptional Attributes Name
character(len=*), intent(in) :: x

The string on which to operate.

Return Value type(string)

The resulting string.

private pure elemental function to_lower_string(x) result(rst)

Converts a string to all lowercase characters. Any characters that are already lowercase, a special symbol, or a numeric value are not modified.

Arguments

Type IntentOptional Attributes Name
type(string), intent(in) :: x

The string on which to operate.

Return Value type(string)

The resulting string.