MCASE$ function

Purpose: MCASE$ converts a string to Mixed Case. Mixed Case means the first letter of each word is Capitalized.


 Syntax:

 RetStr$ = MCASE$(MainStr$)

 Parameters:

  • RetStr$ Returned string converted to Mixed Case.
  • MainStr$ String to be converted to Mixed Case.

Example:


 RetStr$ = MCASE$("this is a test")

Result:

RetStr$ will equal "This Is A Test"