日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

1.常用字符对象方法

發布時間:2024/6/21 编程问答 39 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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.常用字符对象方法的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。