在VB我怎麼能輸入字符串轉換爲字符上下爲輸入「你好」 但像「你好」 我的代碼thiisVB如何輸入字符串轉換爲大寫字符,下
Sub ConvertCase()
Dim i As Integer = 0
Dim inputVal As String = TextBox1.Text
Dim out As String = Label1.Text
Do While i > inputVal.Length()
If inputVal.Length() Mod 2 = 0 Then
out = inputVal.Substring(0, 1).ToUpper
End If
If inputVal.Length() Mod 2 <> 0 Then
out = inputVal.Substring(1).ToLower
End If
Loop
Label1.Text &= out
End Sub
輸出我不知道出了什麼問題> < 謝謝
你的子值都是錯誤 – LittleBobbyTables
我知道-_-這是一個嘗試 你能幫助我嗎? – user3532154