|
'===============================================================================
'-函数名称: MySplit
'-功能描述: 拆分字符串,获得指定格式
'-输入参数说明: 参数1:strMyStr As String 要拆分的字符串
'-返回参数说明: 拆分:质检20060322-01-15-012-2 将获得:质检2006012
'-使用语法示例: MsgBox MySplit("质检20060322-01-15-012-2")
'-参考:
'-使用注意:
'-兼容性: 97,2000,XP,2003
'-作者: fan0217 fan0217@163.com
'-更新日期: 2006-04-10
'===============================================================================
Function MySplit(strMyStr As String) As String
Dim strTemp As String
strTemp = Split(strMyStr, "-", -1)(0)
MySplit = Left(strTemp, Len(strTemp) - 4)
MySplit = MySplit & Split(strMyStr, "-", -1)(3)
End Function
|
|