Nov 16, 2001 #1 ftpdoo Programmer Joined Aug 9, 2001 Messages 202 Location GB Hi, I have a string "strString" which contains the value: PZZZ I need to remove the first Character to leave ZZZ. Any idea's? Thnx, Jonathan
Hi, I have a string "strString" which contains the value: PZZZ I need to remove the first Character to leave ZZZ. Any idea's? Thnx, Jonathan
Nov 16, 2001 1 #2 Mossoft Programmer Joined Sep 12, 2001 Messages 127 Location EU strOut = mid$(strString,2) Upvote 0 Downvote
Nov 20, 2001 1 #3 Kaah Programmer Joined Feb 25, 2001 Messages 40 Location AU or even: sOut = right(sString, Len(sString)-1) k. Upvote 0 Downvote