ToLowerCase
This subroutine converts a string into upper case.
Interface
- ܀ Interface
- ️܀ See example
- ↢
INTERFACE
MODULE PURE SUBROUTINE ToLowerCase(chars)
CHARACTER(*), INTENT(INOUT) :: chars
END SUBROUTINE ToLowerCase
END INTERFACE
program main
use easifemBase
implicit none
CHARACTER( LEN = 100 ) :: astr = "HELLO World"
CALL ToLowerCase(astr)
CALL Display(astr, "lowercase astr = ")
end program main