/**
* Created by lonecloud on 16/9/8.
*/
var str="HelloWorld";
/**
* 这里的两个参数第一个是从0到第几个开始第二个参数为是长度
* substr(begin,length)
*/
alert(str.substr(2,5));//lloWo
/**
* 这里的参数第一个是从0到第几个开始第二个参数是第0开始的最后结束的位置
*substring(begin,length)
*/
alert(str.substring(2,5));//llo
相关文章
- 12-01Chrome和VS Code中的Vue.js调试
- 12-01js中对字符串操作的方法substring(),substring(),slice()
- 12-01substr,subString,split,slice,replace的区别
- 12-01map和hashmap中的区别
- 12-01Python中tuple和list的区别?Python基础学习!
- 12-01python中查询数据库时fetchone()函数和fetchall()函数的区别
- 12-01web.xml中的ContextLoaderListener和DispatcherServlet区别
- 12-01在C和C++中struct与typedef struct的区别详细介绍
- 12-01JS数组中 forEach() 和 map() 的区别
- 12-01springboot中Thymeleaf和Freemarker模板引擎的区别