I have the following:

strAcctNumber = strAcctNumberWithBank.Substring(2, 9)

What I really want is to grad the account number from position 3 on no matter what the lenght. As you can see now, I am restricted to 9 characters long, and I want it to be where is can be less than or greater than 9, but it must start @ position 3. What the correct syntaxt or best route to accomplish this.