; Lower Example ; ------------- ; Lower$ returns a copy of a string with every letter in lower case. shout$="STOP SHOUTING IN CHAT!" Print "Original: "+shout$ Print "Lower$: "+Lower$(shout$) Print "" ; Case-insensitive command check: lower both sides before comparing typed$="StArT" If Lower$(typed$)="start" Then Print "'"+typed$+"' matches the start command (compared in lower case)" EndIf ; Digits and punctuation are left unchanged Print "Lower$('COORDS: X=5, Y=10') = "+Lower$("COORDS: X=5, Y=10") Print "" Print "Press any key to close the example" WaitKey End