How do I use VBScript to strip the first four characters of a string?
Ss that the first four characters are no longer part of the string.
Try this (just create sample.vbs with this content):
Option Explicit Dim sText sText = "aaaaString" sText = Right(sText, Len(sText) - 4) MsgBox(sText)