字符串

Posted hey-李高冷

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串相关的知识,希望对你有一定的参考价值。

var str = ‘百度搜索-WWW.baidu.com‘;

str.charAt(1);     // ‘度‘
str.charCodeAt(1);   // 24230
String.fromCharCode(24230, 25628);   // ‘百度‘

str.indexOf(‘b‘, 3);      // 4  indexof(‘ ‘,从第几位开始)从左往右
str.lastIndexOf(‘o‘);       // 从右往左

‘1000‘ < ‘2‘   // true
‘1000‘ > 2   // true

str.substring(0, 4);    // ‘百度搜索‘
str.slice(-3);        // ‘com‘

str.toUpperCase();   // ‘百度搜索-WWW.BAIDU.COM‘
str.toLowerCase();   // ‘百度搜索-www.baidu.com‘

str.split(‘.‘, 2);     // [ ‘百度搜索-WWW‘, ‘baidu‘ ]

var arr = [ ‘www‘, ‘baidu‘, ‘com‘ ];
arr.join(‘aaa‘);      // ‘www.baidu.com‘

以上是关于字符串的主要内容,如果未能解决你的问题,请参考以下文章

第15章:字符串

什么是字符串常量和字符串变量啊???

neo4j字符串操作大全

java中怎么判断一个字符串数组中包含某个字符或字符串

PHP字符串函数

如何获取一个字符串在某个字符串的位置