close
在寫程式時很多時候,我們常碰到必須判斷前面字元為何在往後執行code後的動作
有很多種方法能夠判斷而我分享我方法中其中一種:
String.Substring
'宣告 Public Function Substring ( _ startIndex As Integer, _ length As Integer _ ) As String
參數
- startIndex
- 類型:System.Int32
這個執行個體中子字串之以零起始的起始字元位置。
- length
- 類型:System.Int32
子字串中的字元數。
下面來個簡單的示範:
目標:我們要取出cde
Dim thing as string
thing = "abcde"
Textbox1.text = thing.Substring(2,3)
全站熱搜
留言列表