Nov 16, 2001 #1 ftpdoo Programmer Aug 9, 2001 202 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 Sep 12, 2001 127 EU strOut = mid$(strString,2) Upvote 0 Downvote
Nov 20, 2001 1 #3 Kaah Programmer Feb 25, 2001 40 AU or even: sOut = right(sString, Len(sString)-1) k. Upvote 0 Downvote