UpperCase
This is a function which returns a string in upper case.
Interface
- ܀ Interface
- ️܀ See example
- ↢
INTERFACE
MODULE PURE FUNCTION UpperCase(chars) RESULT(Ans)
CHARACTER(*), INTENT(IN) :: chars
CHARACTER(LEN(chars)) :: ans
END FUNCTION UpperCase
END INTERFACE
program main
use easifemBase
implicit none
character(20) :: astr = "HELLO"
CALL Display(LowerCase(astr), "hello=" )
end program main