String对象方法详记

测试demo

String

  1. charAt
/**
 * 返回指定位置的字符
 * @param pos
 */
let str = 'this is string';

console.log(str.charAt(2)); // i
  1. charCodeAt
/**
 * 返回指定位置的字符的Unicode 编码
 * @param index
 */
let str = 'this is string';
console.log(str.charCodeAt(2)); // 105
  1. codePointAt
/**
 * 返回指定位置的字符的 Unicode utf-16 字符的码位
 * @param pos
 */
let str = 'this is string';
console.log(str.codePointAt(2)) // 105
  1. concat
/**
 * 返回连接后的新字符串
 * @param strings
 */
let str = "hello";
let str2 = str.concat(",world");
let str3 = str.concat("_", "world");
console.log(str2); // hello,world
console.log(str3); // hello_world
  1. endsWith
/**
 * endsWith(searchString: string, endPosition?: number) : boolean
 * 是否是指定字符结尾,可指定结束搜索的位置,返回布尔值
 */
let str = "hello";
console.log(str.endsWith("e")); //false
console.log(str.endsWith("o")); //true
  1. includes
/**
 * 是否包含指定的子字符串
 * @param searchString
 * @param position 默认0,开始搜索的索引
 */
let str = 'hello';
console.log(str.includes('el',3)) //false
console.log(str.includes('el',1)) //true
  1. indexOf
/**
 * indexOf(searchString: string, position?: number): number
 * 返回某个指定的字符串值在字符串中首次出现的位置索引
 */
let str = 'hello world'
console.log(str.indexOf('o')) // 4
console.log(str.indexOf('o', 5)) // 7
console.log(str.indexOf('m')) // -1
  1. lastIndexOf
/**
 * lastIndexOf(searchString: string, position?: number): number
 * 返回某个指定的字符串值在字符串中首次出现的位置索引,从右往左开始查找
 */
let str = 'hello world'
console.log(str.lastIndexOf('o')) // 7
console.log(str.lastIndexOf('o', 5)) // 4
console.log(str.lastIndexOf('m')) // -1
  1. match
/**
 * @param matcher An object that supports being matched against
 * 返回存放匹配结果的数组
 */
let str = "hello world";
let mat = str.match("he");
console.log(mat); // [ 'he', index: 0, input: 'hello world' ]
let str2 = 'hello, he is my girlfriend';
let reg = str2.match(/he/g)
let reg2 = str2.match(/\w{5}/g)
console.log(reg) //[ 'he', 'he' ]
console.log(reg2) //[ 'hello', 'girlf', 'riend' ]
  1. repeat
    不改变原字符串
/**
 * 返回复制指定次数并连接在一起的字符串
 * @param count number of copies to append
 */
let str = 'hello';
console.log(str.repeat(2)) // hellohello
console.log(str) // hello
  1. replace
/**
 * 使用指定字符替换原有指定字符
 * @param searchValue 搜索的子字符串或reg对象
 * @param replacer 替换的文本或者返回替换文本的函数
 */
let str = 'hello world, this is my string';
let str1 = str.replace('string', 'world');
console.log(str) // hello world, this is my string
console.log(str1) // hello world, this is my world

let str2 = str.replace(/\s/g, '_');
console.log(str2) // hello_world,_this_is_my_string
  1. search
/**
 * 用于检索字符串中指定的子字符串,或检索与正则表达式相匹配的子字符串,没有就返回 -1
 * @param searcher
 */
let str = 'hello this is search';
let str1 = str.search('this')
let str2 = str.search(/is/g)
console.log(str1) // 6
console.log(str2) // 8
  1. slice
    返回新字符串,不改变原字符串
/**
 * slice(start?: number, end?: number): string
 * 提取字符串的片断,并在新的字符串中返回被提取的部分
 */
let str = 'hello this is slice';
let sstr = str.slice(2,5);
console.log(sstr) // llo
  1. split
/**
 * string.split(separator,limit?: number)
 * @param separator 字符串或正则表达式,从该参数指定的地方分割
 * @param limit 可选。该参数可指定返回的数组的最大长度。
 */
let str = "this is split";
let strArr = str.split(" ");
let strArr1 = str.split(" ", 2);
console.log(strArr); // [ 'this', 'is', 'split' ]
console.log(strArr1); // [ 'this', 'is' ]
  1. startsWith
/**
 * startsWith(searchString: string, position?: number): boolean
 * 检测字符串是否以指定的子字符串开始
 */
let str = 'this is startsWith';
console.log(str.startsWith('th')) // true
console.log(str.startsWith('t1')) // false
  1. substr
    返回新字符串,不改变原字符串。第二个参数是长度
/**
 * substr(from: number, length?: number): string;
 * 在字符串中抽取从 开始 下标开始的指定数目的字符, 返回一个新的字符串
 */
let str = "this is substr";
let str1 = str.substr(2, 5);
console.log(str); // this is substr
console.log(str1); // is is
  1. substring
    第二个参数非负
/**
 * substring(start: number, end?: number): string;)
 * @param end 非负的整数,省略该参数,那么返回的子串会一直到字符串的结尾
 */
let str = "this is substring";
let str1 = str.substring(2, 3);
let str2 = str.substring(2);
console.log(str); //this is substring
console.log(str1); // i
console.log(str2); // is is substring
  1. toLowerCase toUpperCase
/**
 * toLowerCase 转小写
 * toUpperCase 转大写
 */
let str = 'This is toLowerCase toUpperCase';
console.log(str.toLowerCase()) // this is tolowercase touppercase
console.log(str.toUpperCase()) // THIS IS TOLOWERCASE TOUPPERCASE
  1. trim
/**
 * 去除两边空白,不改变原字符串, 也可使用Left,Start,End,Right去除任意一边的空白
 */

let str = '   this is  he ';
console.log(str.trim()) //this is  he
console.log(str.trimEnd()) //   this is  he
console.log(str.trimLeft()) //this is  he 
console.log(str.trimRight()) //   this is  he
console.log(str.trimStart()) //this is  he 
  1. valueOf
/**
 * 输出String 对象的原始值
 */
let str = 'hello';
console.log(str.valueOf()) // hello
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,723评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,080评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,604评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,440评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,431评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,499评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,893评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,541评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,751评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,547评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,619评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,320评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,890评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,896评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,137评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,796评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,335评论 2 342

推荐阅读更多精彩内容