Function LeftOf (sourceString As String, searchString As String) As String
'LotusScript equivalents for the @Left
pos% = Instr(sourceString, searchString)
If pos% > 0 Then pos% = pos% -1
LeftOf = Left(sourceString, pos%)
End Function
Sunday, November 2, 2008
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment