?? frmsplit.frm
字號:
VERSION 5.00
Begin VB.Form frmSplit
AutoRedraw = -1 'True
Caption = "Using Function Split"
ClientHeight = 1770
ClientLeft = 5490
ClientTop = 3990
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 1770
ScaleWidth = 4680
End
Attribute VB_Name = "frmSplit"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
' Fig. 8.29
' Using function Split
Option Explicit
Private Sub Form_Load()
Dim x() As String, y As String
Dim z As Integer
y = "This is a sentence with 7 tokens"
x = Split(y)
For z = LBound(x) To UBound(x)
Print x(z)
Next z
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -