博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js String方法集合
阅读量:5278 次
发布时间:2019-06-14

本文共 1310 字,大约阅读时间需要 4 分钟。

//https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String //返回对应索引的字符chartAt()//返回对应所引的字符的统一码(Unicode value)charCodeAt()//Returns a non-negative integer that is the UTF-16 encoded code point value at the given position.codePointAt();//拼接两个字符串,并返回一个新的字符串concat();//Determines whether one string may be found within another string.includes();//Determines whether a string ends with the characters of another string.endsWidth();//返回一个字符串在另一个字符串中首次出现的位置,如果查找不到,返回-1indexOf();//返回一个字符串在另一个字符串中末次出现的位置,如果查找不到,返回-1lastIndexOf();//Returns a number indicating whether a reference string comes before or after or is the same as the given string in sort order.localeCompare();//用字符串匹配一个字符串mach();//Returns the Unicode Normalization Form of the calling string value.normalize();//Returns a string consisting of the elements of the object repeated the given times.repeat();//找出字符串中和正则表达式匹配的部分,并用一个新的子串替换replace();//找出字符串中和正则表达式匹配的部分search();//截取字符串的一部分返回slice();//把一个字符串分割成数组,分割点为传入的子串split();//Returns the characters in a string beginning at the specified location through the specified number of characters.substr();//substring();//toLocalLowerCase();//toLocalUpperCase();toLowerCase();toSource();toString();toUpperCase();trim();valueOf();

 

转载于:https://www.cnblogs.com/flyfly/p/4776405.html

你可能感兴趣的文章
Ubuntu14.04下安装ZendStudio10.6.1+SVN出现Failed to load JavaHL Library
查看>>
Wind River Linux 6 Security Profile
查看>>
Android_显示器本身被卸载应用程序
查看>>
怎样以学习单片机为契机,逐步成为优秀的project师
查看>>
Java中Integer类的方法
查看>>
“error : unknown filesystem”的解决的方法
查看>>
linux杂谈(十九):DNSserver的配置(二)
查看>>
《网络攻防》第二周作业
查看>>
关于Windows Live Writer博客同步
查看>>
linux下的C语言快速学习—计算机体系结构基础简单了解
查看>>
nextTick refs
查看>>
内置函数
查看>>
ucore lab1实验笔记
查看>>
java内部类概念
查看>>
(60)zabbix网络发现介绍Network Discovery
查看>>
annotation本质
查看>>
shell之文本过滤(awk)
查看>>
学习进度条--第五周
查看>>
获取spring中所有的bean名称
查看>>
linux常用命令
查看>>