views:

23

answers:

1

Hello,

I would like to trim an x amount of characters from the left of multiple folders.

Imagine having these folder names:

01.a-foldername
02.b-foldername
03.c-foldername

After being processed by the VBscript they become:

a-foldername
b-foldername
c-foldername
+1  A: 

Use Mid:

Mid(string,start[,length])

So in your example above

Mid(4)

Of interest: VBScript Functions

Mitch Wheat