Feb 20, 2002 #1 speek Technical User Mar 29, 2008 25 US How to remove the last character of a string (of unknown length)? Explanation: The user selects a path. The program adds a backslash at the end of the path. But in one case this backslash must be removed. Speek
How to remove the last character of a string (of unknown length)? Explanation: The user selects a path. The program adds a backslash at the end of the path. But in one case this backslash must be removed. Speek
Feb 20, 2002 #2 Jon4747 Programmer Aug 22, 2001 234 CA Hi Speek, Dim str As String Dim intA As Integer str = "aaaaaaaaab\" intA = Len(str) str = Left(str, intA - 1) Debug.Print str Jon Upvote 0 Downvote
Hi Speek, Dim str As String Dim intA As Integer str = "aaaaaaaaab\" intA = Len(str) str = Left(str, intA - 1) Debug.Print str Jon
Feb 20, 2002 #3 BrianRig IS-IT--Management Feb 20, 2002 3 US ...or perhaps strNewString = Left(strOldString,Len(strOldString)-1) Upvote 0 Downvote
Feb 20, 2002 Thread starter #4 speek Technical User Mar 29, 2008 25 US I tried Brian's solution and it works fine. Thanks to both of you. Speek Upvote 0 Downvote