- Home
·
- String Manipulation
·
- Split any string from any given location..just supply the parameters to functiions in the modules
Split any string from any given location..just supply the parameters to functiions in the modules
Split any string from any given location..just supply the parameters to functiions in the modules
API Declarations
'5th June 2002
'[email protected]
'http://www.akaaz.cjb.net
Rate Split any string from any given location..just supply the parameters to functiions in the modules
(1(1 Vote))
Dim CutOff, strLength As Integer
CutOff = InStr(1, strLine, strSplitBy, vbTextCompare)
strLength = Len(strLine)
strLine = Mid$(strLine, CutOff + 1, strLength)
String_Value_After = strLine
End Function
Public Function String_Value_Before(ByVal strLine As String, strSplitBy As String) As String
Dim CutOff, strLength As Integer
CutOff = InStr(1, strLine, strSplitBy, vbTextCompare)
strLength = Len(strLine)
strLine = Mid$(strLine, CutOff + 1, strLength)
String_Value_Before = strLine
End Function
Split any string from any given location..just supply the parameters to functiions in the modules Comments
No comments yet — be the first to post one!
Post a Comment