LeftString. Searches a string from left to right and returns the leftmost characters of the string. sourceString. LotusScript @left. Find left string by character not by position. Works in .ASP
| Your Email Address |  |
| Your Name | Steve |
| Company Name | |
| Subject | LeftString. Searches a string from left to right and returns the leftmost characters of the string. sourceString. LotusScript @left. Find left string by character not by position. Works in .ASP |
Details
| Function LeftString ( sourceString As String,searchString As String) As String
Dim pos As Integer
pos = Instr ( sourceString, searchString )
If pos > 0 Then pos = pos -1
LeftString = Left ( sourceString, pos )
End Function |
| Attachments | -none- |
| Operating System | - |
| Technologies Implimented | LotusScript |
| Installation Notes | - |
| Category | - |
 |  |
Add Response || Add a Resource
Responses to "LeftString. Searches a string from left to right and returns the leftmost characters of the string. sourceString. LotusScript @left. Find left string by character not by position. Works in .ASP":
|
|