UCase to LCase & LCase to UCase Converter
THIS VERY COOL FUNCTION TAKES A NORMAL STRING AND CONVERT EVERY CHARACTER IN IT FROM UCase TO LCase OR FROM LCase TO UCase... CHECK IT OUT!! AND VOTE IF YOU FIND IT USEFUL
AI
AI 요약: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.
소스 코드
Public Function Convert(orgStr As String) As String For Counter = 1 To Len(orgStr) X = Mid(orgStr, Counter, 1) If X = LCase(X) Then X = UCase(X) Else X = LCase(X) End If Convert = Convert & X Next End Function
원본 댓글 (3)
Wayback Machine에서 복구됨