這篇文章主要介紹了js字符串操作方法,實例分析了javascript中slice、substr及substring等方法的使用技巧,需要的朋友可以參考下
?
1 2 3 4 5 var str="This is my first Script code."; document.write("原字符串為:"+str+"<br>") document.write("第五個字符之後的部分:"+str.slice(5,-1)+"<br>"); document.write("第五個字符之後的15個字符:"+str.substr(5,15)+"<br>"); document.write("第五個字符後至第15個字符:"+str.substring(5,15)+"<br>");希望本文所述對大家的javascript程序設計有所幫助。
注< >:更多精彩教程請關注編程