2个回答
展开全部
函数
Public Function ParsePath(sPathIn As String) As String
ParsePath = sPathIn
For I = Len(sPathIn) To 1 Step -1
If InStr("\", Mid$(sPathIn, I, 1)) Then
ParsePath = Left$(sPathIn, I - 1)
Exit For
End If
Next
End Function
使用方法:
Private Sub Form_Load()
MsgBox ParsePath("12345\121212")
End Sub
Public Function ParsePath(sPathIn As String) As String
ParsePath = sPathIn
For I = Len(sPathIn) To 1 Step -1
If InStr("\", Mid$(sPathIn, I, 1)) Then
ParsePath = Left$(sPathIn, I - 1)
Exit For
End If
Next
End Function
使用方法:
Private Sub Form_Load()
MsgBox ParsePath("12345\121212")
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询