UCASE$ function

Purpose: UCASE$ converts a string to UPPER CASE.


 Syntax:

 RetStr$ = UCASE$(MainStr$)

 Parameters:

  • RetStr$ Returned string containing MainStr$ converted to UPPER CASE.
  • MainStr$ String to be converted to UPPER CASE.

Example:


 RetStr$ = UCASE$("abcdefg")

Result:

RetStr$ will equal "ABCDEFG"

BCX Console Sample Programs using UCASE$ function.

S03.bas, S27.bas, S36.bas, S61.bas, S81.bas, S94.bas, S99.bas