I have a string that looks like this:
I want to remove the digits at the end of the string, basically the 16 digits at the end of the string. In the end it should look like this:Code:[APPLE PIE] Sei Shoujo Sentai Lakers 3 Battle Team Lakers 3 (100% FULL-PIC)_20121104_032834
This is my code that I have written so farCode:[APPLE PIE] Sei Shoujo Sentai Lakers 3 Battle Team Lakers 3 (100% FULL-PIC)
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 javascript?Code:var str="[APPLE PIE] Sei Shoujo Sentai Lakers 3 Battle Team Lakers 3 (100% FULL-PIC)_20121104_032834"; var n=str.substr(1,74); document.write(n);


Reply With Quote
Bookmarks