Convert Case

Category: Strings

Date: 02-16-2022

Return to Index


 
'Used by programmers in almost all programs - good for controlling visual display of data
'as well as in various PowerBASIC statements that offer case-sensitive options.
 
'Primary Code:
a$ = UCase$("my duck")  'convert to UPPER case:  returns 'MY DUCK'
a$ = LCase$("MY DUCK")  'convert to lower case:  returns 'my duck'
a$ = Mcase$("mY DUcK")  'convert to MixedCase:  returns 'My Duck' - capitalizes 1st letter of each word
 
'Compilable Example:  (Jose Includes)
#Compiler PBWin 9, PBWin 10
#Compile EXE
#Dim All
%Unicode=1
#Include "Win32API.inc"
Global hDlg As Dword
 
Function PBMain() As Long
   Dialog New Pixels, 0, "Test Code",300,300,200,200, %WS_OverlappedWindow To hDlg
   Control Add Button, hDlg, 100,"Push", 50,10,100,20
   Dialog Show Modal hDlg Call DlgProc
End Function
 
CallBack Function DlgProc() As Long
   If CB.Msg = %WM_Command AND CB.Ctl = 100 AND CB.Ctlmsg = %BN_Clicked Then
      Local temp$
      temp$ = UCase$("my duck")                              'convert to UPPER case
      temp$ = temp$ + $crlf + $crlf + LCase$("MY DUCK")  'convert to lower case
      temp$ = temp$ + $crlf + $crlf + Mcase$("mY DUcK")  'convert to MixedCase
      MsgBox temp$
   End If
End Function
 
'gbs_00237
'Date: 03-10-2012


created by gbSnippets
http://www.garybeene.com/sw/gbsnippets.htm