String functions in classic asp - Wrox Programmer Forums
Hmm. Something like this would work. Dim sString sString = "Some Really long string that you need to remove 12 chars from" Dim sNewString Dim iLength iLength = Len(sString) sNewString = Left(sString, (CInt(iLength) - 12)) What this does is, it gets the to...