当前位置:   article > 正文

前端 js 经典:字符串超全方法总结_js 查找字符串

js 查找字符串

1. anchor 创建 a 标签字符串

anchor(name),name:a 标签的 name 属性

返回一个 a 标签字符串

  1. let str = "yqcoder";
  2. // 不传值
  3. str.anchor(); // '<a name="undefined">yqcoder</a>'
  4. // 创建 name 属性为 web 的 a 标签字符串
  5. str.anchor("web"); // '<a name="web">yqcoder</a>'
'
运行

2. at 根据下标查找字符

at(index?),index:字符串下标,默认等于 0

返回下标所在字符串,如果没找到返回 undefined

  1. let str = "yqcoder";
  2. // 默认返回第 1 个字符
  3. str.at(); // 'y'
  4. // 查找最后 1 个字符
  5. str.at(-1); // 'r'
  6. // 没找到
  7. str.at(100); // undefined
'
运行

3. big 创建大号标签字符串

big(),返回大号标签字符串

  1. let str = "yqcoder";
  2. // 创建 str 大号标签字符串
  3. str.big(); // '<big>yqcoder</big>'
'
运行

4. blink 创建闪动标签字符串

blink(),返回闪动标签字符串

  1. let str = "yqcoder";
  2. // 创建 str 闪动标签字符串
  3. str.big(); // '<blink>yqcoder</blink>'
'
运行

5. bold 创建粗体标签字符串

bold(),返回粗体标签字符串

  1. let str = "yqcoder";
  2. // 创建 str 粗体标签字符串
  3. str.bold(); // '<b>yqcoder</b>'
'
运行

6. charAt 查找下标对应字符

charAt(index?),index:字符下标,默认为 0

查找到返回对应字符,如果没找到返回空 ""。

  1. let str = "yqcoder";
  2. // 默认返回第 1 位字符
  3. str.charAt(); // y
  4. // 返回最后 1 位字符
  5. str.charAt(str.length - 1); // r
  6. // 找不到
  7. str.charAt(100); // ""
'
运行

7. charCodeAt 查找下标对应字符的 Unicode 编码。

charCodeAt(index?),index:字符下标,默认为 0

查找到返回对应字符,如果没找到返回空 NAN。

  1. let str = "yqcoder";
  2. // 默认返回第 1 位字符
  3. str.charCodeAt(); // 121
  4. // 返回最后 1 位字符
  5. str.charCodeAt(str.length - 1); // 114
  6. // 找不到
  7. str.charCodeAt(100); // NAN
'
运行

8. codePointAt 查找下标对应字符的 Unicode 编码。

codePointAt(index?),index:字符下标,默认为 0

查找到返回对应字符,如果没找到返回空 undefined。

  1. let str = "yqcoder";
  2. // 默认返回第 1 位字符
  3. str.codePointAt(); // 121
  4. // 返回最后 1 位字符
  5. str.codePointAt(str.length - 1); // 114
  6. // 找不到
  7. str.codePointAt(100); // undefined
'
运行

9. concat 字符串拼接

concat(arg),arg 参数可以是字符串,数组,多层数组,多个数组。

返回拼接好的字符串

  1. let str = "yqcoder";
  2. // 拼接普通字符串
  3. str.concat(" is coder"); // 'yqcoder is coder'
  4. // 拼接字符串数组
  5. str.concat([" is coder", " is a man"]); // 'yqcoder is coder, is a man'
  6. // 拼接多层字符串数组
  7. str.concat([" is coder", [" is a man", [" is a big"]]]); // 'yqcoder is coder, is a man, is a big'
  8. // 拼接多个数组字符串
  9. str.concat([" is coder"], [" is a man"]); // 'yqcoder is coder is a man'
'
运行

10. endsWith 判断字符串是否由特定字符结尾

endsWith(str, length?),str:特定字符,length:被用来判断的字符长度,从左到右的字符长度。

判断时区分大小写,符合返回 true,不符合返回 false

  1. let str = "yqcoder";
  2. // 判断是否coder结尾
  3. str.endsWith("coder"); // true
  4. // 判断是否Coder结尾
  5. str.endsWith("Coder"); // false
  6. // 判断前 6 个字符是否以 coder 结尾
  7. str.endsWith("coder", 6); // false
'
运行

11. fixed 创建<tt>标签字符串

fixed(),返回<tt>标签字符串

  1. let str = "yqcoder";
  2. // 创建 str <tt>标签字符串
  3. str.fixed(); // '<tt>yqcoder</tt>'
'
运行

12. fontcolor 创建 color 属性的 font 标签字符串

fontcolor(color),color:颜色

返回 color 属性的 font 标签字符串

  1. let str = "yqcoder";
  2. // 创建color为red的<font>标签字符串
  3. str.fontcolor("red"); // '<font color="red">yqcoder</font>'
'
运行

13. fontsize 创建 size 属性的 font 标签字符串

fontsize(size),size:字体大小

返回 size 属性的 font 标签字符串

  1. let str = "yqcoder";
  2. // 创建size为red的<font>标签字符串
  3. str.fontsize(12); // '<font size="12">yqcoder</font>'
'
运行

14. includes 判断是否包含特定字符串

includes(str, start?),str:特定字符串,start:开始下标

包含返回 true,不包含返回 false

  1. let str = "yqcoder";
  2. // 判断是否包含 'yq' 字符
  3. str.includes("yq"); // true
  4. // 从下标 1 开始判断是否包含 'yq'
  5. str.includes("yq", 1); // false
'
运行

16. indexOf 查找字符串下标

indexOf(str, start?),str:查找字符,start:开始下标,默认从 0 开始

查找到返回下标,如果没找到返回 -1。

  1. let str = "yqcoder-yqcoder";
  2. // 从下标 0 开始,查找 y 所在位置。
  3. str.indexOf("y"); // 0
  4. // 从下标 2 开始,查找 y 所在位置。
  5. str.indexOf("y", 2); // 8
'
运行

17. isWellFormed 判断字符串是否包含单独代理项

isWellFormed(),返回 boolean 值。

  1. let str = "yqcoder";
  2. let str1 = "yqcoder\uD800";
  3. // 判断str是否包含单独代理项
  4. str.isWellFormed(); // true
  5. // 判断str1是否包含单独代理项
  6. str1.isWellFormed(); // false

18. italics 创建斜体标签字符串

italics(),返回斜体标签字符串

  1. let str = "yqcoder";
  2. // 创建斜体字符串
  3. str.italics(); // '<i>yqcoder</i>'
'
运行

19. lastIndexOf 从后往前查找字符串下标

lastIndexOf(str, start?),str:查找字符,start:开始下标,默认从 0 开始

查找到返回下标,如果没找到返回 -1。

  1. let str = "yqcoder-yqcoder";
  2. // 从最后 1 开始,查找 y 所在位置。
  3. str.indexOf("y"); // 8
  4. // 从下标 0 开始,查找 y 所在位置。
  5. str.indexOf("y", 0); // 0
'
运行

20. link 创建 a 标签字符串

link(url),url:a 标签的 href 属性

返回一个 a 标签字符串

  1. let str = "yqcoder";
  2. // 不传值
  3. str.link(); // '<a href="undefined">yqcoder</a>'
  4. // 创建 href 属性为 www.baidu.com 的 a 标签字符串
  5. str.link("www.baidu.com"); // '<a href="www.baidu.com">yqcoder</a>'
'
运行

21. localeCompare 比较两个字符串大小

localeCompare(str),str:比较字符串

当大于比较字符串时返回 1,等于返回 0,小于返回 -1

  1. let str = "a";
  2. let str1 = "b";
  3. // 比较 str,str1 大小
  4. str.localeCompare(str1); // -1
  5. // 自身比较
  6. str.localeCompare(str); // 0
  7. // 比较 str1,str 大小
  8. str.localeCompare(str); // -1
'
运行

22. match 根据传入正则匹配字符串

match(reg),reg:传入正则

字符串满足正则要求返回一个数组。没找到返回 null

  1. let str = "yqcoder";
  2. // 匹配正则 /coder/ 的字符串
  3. str.match(/coder/); // ['coder', index: 2, input: 'yqcoder_yqcoder', groups: undefined]
  4. // 匹配正则 /coder/g 的字符串
  5. str.match(/coder/g); // ['coder']
  6. // 不匹配正则
  7. str.match(/\d/g); // null
'
运行

23. matchall 根据传入正则匹配字符串

matchall(reg),reg:正则表达式,必须带 g

调用方法的字符串必须通过 ... 才可调用,满足条件返回分组迭代器,不满足返回 undefined

  1. let str = "yqcoder-yqcoder";
  2. // 匹配正则 /coder/g 的字符串
  3. console.log(...str.matchAll(/coder/g)); // ['coder', index: 2, input: 'yqcoder-yqcoder', groups: undefined] ['coder', index: 10, input: 'yqcoder-yqcoder', groups: undefined]
  4. // 不匹配正则
  5. console.log(...str.matchAll(/\d/g)); // undefined
'
运行

24. padEnd 尾部填充

padEnd(length, str?),length:填充长度,str:填充字符,默认为空

返回填充后的字符串,如果 length 小于原字符串长度,返回原字符串

  1. let str = "yqcoder";
  2. // 默认填充字符串长度到 10
  3. str.padEnd(10); // 'yqcoder '
  4. // 填充 1 直到字符长度到 10
  5. str.padEnd(10, 1); // 'yqcoder111'
  6. // 填充 123 知道字符长度到 9
  7. str.padEnd(9, 123); // 'yqcoder12'
  8. // 填充 1 直到字符长度到 1
  9. str.padEnd(1, 1); // 'yqcoder'
'
运行

25. padStart 头部填充

padStart(length, str?),length:填充长度,str:填充字符,默认为空

返回填充后的字符串,如果 length 小于原字符串长度,返回原字符串

  1. let str = "yqcoder";
  2. // 默认填充字符串长度到 10
  3. str.padStart(10); // ' yqcoder'
  4. // 填充 1 直到字符长度到 10
  5. str.padStart(10, 1); // '111yqcoder'
  6. // 填充 123 知道字符长度到 9
  7. str.padStart(9, 123); // '12yqcoder'
  8. // 填充 1 直到字符长度到 1
  9. str.padStart(1, 1); // 'yqcoder'
'
运行

26. repeat 重复字符串

repeat(number), number:重复次数

返回重复后的字符串

  1. let str = "yqcoder";
  2. // 重复 1 次字符串
  3. str.repeat(1); // 'yqcoder'
  4. // 重复 2 次字符串
  5. str.repeat(2); // 'yqcoderyqcoder'
'
运行

27. replace 替换字符串

replace(oldStr, newStr),oldStr:替换前字符串,newStr:替换后字符串

返回替换后的字符串

  1. let str = "yqcoder-yqcoder";
  2. // 将 yq 替换成 dyb
  3. str.replace("yq", "dyb"); // 'dybcoder-yqcoder'
  4. // 将所有 yq 替换成 dyb
  5. str.replace(/yq/g, "dyb"); // 'dybcoder-dybcoder'
'
运行

28. replaceAll 替换所有满足条件字符串

replaceAll(oldStr, newStr),oldStr:替换前字符串,newStr:替换后字符串

返回替换后的字符串

  1. let str = "yqcoder-yqcoder";
  2. // 将 yq 替换成 dyb
  3. str.replaceAll("yq", "dyb"); // 'dybcoder-dybcoder'
'
运行

29. search 查找字符串是否存在

search(str),str:目标字符串

如果查到返回目标字符串下标,如果没找到返回 -1

  1. let str = "yqcoder";
  2. // 查找 'yq'
  3. str.search("yq"); // 0
  4. // 查找 'dyb'
  5. str.search("dyb"); // -1
'
运行

30. slice 字符串截取

slice(start, end?),start:开始下标,end:结束下标

左闭右开,如果存在返回截取字段,不存在返回 ""

  1. let str = "yqcoder";
  2. // 截取字符串前 2 位
  3. str.slice(0, 2); // 'yq'
  4. // 截取字符串最后 1 位
  5. str.slice(-1); // 'r'
  6. // 截取字符串第 11 位
  7. str.slice(10, 11); // ''
'
运行

31. small 创建 small 标签字符串

small(),返回一个 small 标签字符串

  1. let str = "yqcoder";
  2. // 创建 small 标签字符串
  3. str.small(); // '<small>yqcoder</small>'
'
运行

32. split 字符串分割成数组

split(str?, length?),str:分割符,length:分割后数组长度

返回分割后的数组。

  1. let str = "yqcoder-yqcoder";
  2. // 不传参,字符串直接转数组
  3. str.split(); // ['yqcoder-yqcoder']
  4. // 将字符串以 "-" 分割成数组
  5. str.split("-"); // ['yqcoder', 'yqcoder']
  6. // 将字符串以 "-" 分割成数组,只要数组第一项
  7. str.split("-", 1); // ['yqcoder']
'
运行

33. startsWith 判断字符串是否由特定字符开始

startsWith(str),str:特定字符

判断时区分大小写,符合返回 true,不符合返回 false

  1. let str = "yqcoder";
  2. // 判断是否 yq 开始
  3. str.startsWith("yq"); // true
  4. // 判断是否 Yq 开始
  5. str.startsWith("Yq"); // false
'
运行

34. strike 创建删除标签字符串

strike(),返回删除标签字符串

  1. let str = "yqcoder";
  2. // 创建删除标签字符串
  3. str.strike(); // '<strike>yqcoder</strike>'
'
运行

35. sub 创建下标标签字符串

sub(),返回下标标签字符串

  1. let str = "yqcoder";
  2. // 创建下标标签字符串
  3. str.sub(); // '<sub>yqcoder</sub>
'
运行

36. substr 字符串裁剪

substr(index, length?),index:开始下标,length:裁剪长度

返回裁剪后的字符串,包括 index 下标的字符。如果不传 length,默认裁剪从 index 到最后

  1. let str = "yqcoder";
  2. // 裁剪下标 2 开始的全部字符
  3. str.substr(2); // 'coder'
  4. // 裁剪前 2 位字符
  5. str.substr(02); // 'yq'

37. substring 字符串裁剪

substring(start, end?),start:开始下标,end:结束下标

返回裁剪后的字符串,包括 start 下标的字符。不包括 end 结束下标字符。如果不传 end,默认裁剪到最后

  1. let str = "yqcoder";
  2. // 裁剪下标 2 开始的全部字符
  3. str.substring(2); // 'coder'
  4. // 裁剪前 2 位字符
  5. str.substring(0, 2); // 'yq'
  6. // 裁剪第 2 位
  7. str.substring(1, 2); // 'q'
'
运行

38. sup 创建上标标签字符串

sup(),返回上标标签字符串

  1. let str = "yqcoder";
  2. // 创建上标标签字符串
  3. str.sup(); // '<sup>yqcoder</sup>'
'
运行

39. toLocaleLowerCase 字母转小写

toLocaleLowerCase(),将所有大写字母转小写

  1. let str = "YqCoder";
  2. // 字母转小写
  3. str.toLocaleLowerCase(); // 'yqcoder'
'
运行

40. toLocaleUpperCase 字母转大写

toLocaleUpperCase(),将所有小写字母转大写

  1. let str = "YqCoder";
  2. // 字母转大写
  3. str.toLocaleUpperCase(); // 'YQCODER'
'
运行

41. toLowerCase 字母转小写

toLowerCase(),将所有大写字母转小写

  1. let str = "YqCoder";
  2. // 字母转小写
  3. str.toLowerCase(); // 'yqcoder'
'
运行

42. toUpperCase 字母转大写

toUpperCase(),将所有小写字母转大写

  1. let str = "YqCoder";
  2. // 字母转大写
  3. str.toUpperCase(); // 'YQCODER'
'
运行

43. toString 转字符串

toString(),各个数据类型通过 toString()方法转字符串

  1. let arr = [1, [2, 3, [4, 5, 6, [7, 8, 9]]]];
  2. let obj = { name: "yqcoder" };
  3. let bl = true;
  4. let number = 123;
  5. // 数组转字符串,会将数组内数据平铺用, 拼接成字符串
  6. arr.toString(); // '1,2,3,4,5,6,7,8,9'
  7. // 对象转字符串
  8. obj.toString(); // '[object Object]'
  9. // 布尔值转字符串
  10. bl.toString(); // 'true'
  11. // 数字转字符串
  12. number.toString(); // '123'
'
运行

44. toWellFormed 迭代字符串的码元

toWellFormed(),将任何单独的代理项替换为 Unicode 替换字符 U+FFFD �。

  1. let str = "yqcoder";
  2. let str1 = "yqcoder\uD800";
  3. // 将 str 中的单独的代理项替换成 �
  4. str.toWellFormed(); // 'yqcoder'
  5. // 将 str1 中的单独的代理项替换成 �
  6. str1.toWellFormed(); // 'yqcoder�'

45. trim 去字符串头和尾的空格

trim(),返回去除头尾空格后的字符串,无法去除中间的空格。

  1. let str = " yq coder ";
  2. // 将 str 去除头尾空格
  3. str.trim(); // 'yq coder'
'
运行

46. trimEnd、trimRight 去字符串尾部的空格

trimEnd()、trimRight() 返回去除尾部空格后的字符串。

  1. let str = " yq coder ";
  2. // 将 str 去除头尾空格
  3. str.trimEnd(); // ' yq coder'
  4. str.trimRight(); // ' yq coder'
'
运行

47. trimStart、trimLeft 去字符串头部的空格

trimStart()、trimLeft() 返回去除头部空格后的字符串。

  1. let str = " yq coder ";
  2. // 将 str 去除头尾空格
  3. str.trimStart(); // 'yq coder '
  4. str.trimLeft(); // 'yq coder '
'
运行
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/秋刀鱼在做梦/article/detail/1000056
推荐阅读
相关标签
  

闽ICP备14008679号