I have a string that looks like this
[APPLE PIE] Sei Shoujo Sentai Lakers 3 Battle Team Lakers 3 (100% FULL-PIC)_20121104_032834
I want to remove the digits at the end of the string. basically the 16 digits at the end of the string. This is the code I have wrote so far
txt="[APPLE PIE] Sei Shoujo Sentai Lakers 3 Battle Team Lakers 3 (100% FULL-PIC)_20121104_032834"
alert(Left(txt,75))
The problem is the string will be different so each will have different amount of characters. So how I remove the digits at the end of the string in vbscript?
Try this instead
regardless of the length of your string TXT, the last 16 characters will not be taken