1.常用字符对象方法
生活随笔
收集整理的這篇文章主要介紹了
1.常用字符对象方法
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
var string = "helLo,world";
string.charAt(0); //指定位置的字符(h)
string.charAt(string.length-1); //最后一個字符
string.charCodeAt(0); //第一個字符的 Unicode 編碼(h是114)
string.concat('new'); //返回新字符串(helLo,worldnew)
string.indexOf("w"); //indexOf查找w出現位置
string.lastIndexOf("w"); //lastIndexOf方法反向查找w出現的位置
string.match("world"); //匹配到的字符串(world)
string.match(/l/gi); //匹配正則,返回數組([l,L,l])
string.search(/l/); //返回匹配的位置,沒找到任何匹配的子串,則返回 -1
string.substring(1,4); //substring方法截取第2~4個字符
string.slice(1,4); //slice方法截取第2~4個字符
string.slice(-3); //slice方法截取最后三個字符
string.split(","); //split方法分割子串
string.replace("h","H"); //replace方法替換
string.toUpperCase(); //toUpperCase()方法轉換為大寫
string.toLowerCase(); //toLowerCase()方法轉換為小寫//ECMAScript 5去除空白字符串
if(String.prototype.trim){String.prototype.trim = function(){return this.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, '');}
}//ECMAScript 6的查找片段字符串(String.includes()方法)
if (!String.prototype.includes) {String.prototype.includes = function(search, start) {'use strict';if (typeof start !== 'number') {start = 0;}if (start + search.length > this.length) {return false;} else {return this.indexOf(search, start) !== -1;}};
}
?
轉載于:https://www.cnblogs.com/alantao/p/5819663.html
與50位技術專家面對面20年技術見證,附贈技術全景圖總結
以上是生活随笔為你收集整理的1.常用字符对象方法的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: ASP.NET MVC网站学习问题积累(
- 下一篇: leetcode-Combination