时间:2021-07-01 10:21:17 帮助过:3人阅读
字符方法
1、charAt()
接收一个参数,基于0的字符位置。以单字符串的形式返回给定位置的那个字符。
var stringValue = "hello world"; console.log(stringValue.charAt(1)); //"e"
2、charCodeAt()
接收一个参数,基于0的字符位置。 返回的是字符编码。
var stringValue = "hello world"; console.log(stringValue.charCodeAt(1)); //101
字符串操作方法
1、concat()
用于将一个或多个字符串拼接起来,返回拼接得到的新字符串,不会修改字符串本身的值,只是返回一个基本类型的字符串值。
var stringValue = "hello "; var result = stringValue.concat("world"); console.log(result); // "hello world" console.log(stringValue); // "hello"
2、slice()
截取字符串,只是返回一个基本类型的字符串值,对原始字符串没有任何影响。
如果传两个参数,第一个参数是开始截取的位置,第二个参数是结束截取的位置。
var stringValue = "hello world"; console.log(stringValue.slice(3)); //"lo world" console.log(stringValue.slice(3,7)); //"lo w"
3、substring()
截取字符串,只是返回一个基本类型的字符串值,对原始字符串没有任何影响。
如果传两个参数,第一个参数是开始截取的位置,第二个参数是结束截取的位置。
var stringValue = "hello world"; console.log(stringValue.substring(3)); //"lo world" console.log(stringValue.substring(3,7)); //"lo w"
4、substr()
截取字符串,只是返回一个基本类型的字符串值,对原始字符串没有任何影响。
如果传两个参数,第一个参数是开始截取的位置,第二个参数是返回的字符个数。
var stringValue = "hello world"; console.log(stringValue.substr(3)); //"lo world" console.log(stringValue.substr(3,7)); //"lo worl"
相关推荐:
Js中前端模块化的详细分析及其区别对比
js实现时间戳转时间格式的代码详解
以上就是js中字符方法以及字符串操作方法的总结(附代码)的详细内容,更多请关注Gxl网其它相关文章!