tbeck11
Mechanical
- Dec 7, 2001
- 43
If I use the code below to strip off the last 6 characters of a file name, what code would I use to capture and store the first two characters of the file name?
filename = Strings.Left(filename, Len(filename) - 6) & "PDF"
My goal is to capture and store the first to characters and then us those characters to set the dir to save a file into.
Thanks.
Todd
filename = Strings.Left(filename, Len(filename) - 6) & "PDF"
My goal is to capture and store the first to characters and then us those characters to set the dir to save a file into.
Thanks.
Todd