javascript學習筆記(三) String 字串類型介紹

來源:互聯網
上載者:User

1.字元方法charAt() 、charCodeAt()、fromCharCode() 複製代碼 代碼如下:var stringValue = "hello world";
alert(stringValue.charAt(1));    //"e"
alert(stringValue[1]);      //"e"
alert(stringValue.charCodeAt(1));  //101
alert(String.fromCharCode(104,101)); //"he"

2.返回子字串方法slice()、substr()、substring()
slice()、substring()方法第一個參數指定子字串的起始位置,第二個參數指定結算位置(不包括結束位置),原字串不變
substr()第二個參數指的是返回的字元個數,原字串不變 複製代碼 代碼如下:var stringValue = "hello world";
alert(stringValue.slice(3)); //"lo world"
alert(stringValue.substring(3)); //"lo world"
alert(stringValue.substr(3)); //"lo world"
alert(stringValue.slice(3,7)); //"lo w"
alert(stringValue.subtring(3,7));   //"lo w"
alert(stringValue.substr(3,7)); //"lo worl"

alert(stringValue.slice(-3)); //"rld",取數組最後3個字元
alert(stringValue.slice(-3)); //"rld",取數組最後3個字元

3.字串位置方法 indexOf() 和 lastIndexOf()
indexOf()方法從前向後搜尋子字串,可接收一個參數或兩個參數,第一參數指定要搜尋的子字串,第二個參數指定從該位置向後搜尋,沒找到返回-1
lastIndexOf()方法從後向前搜尋子字串,可接收一個參數或兩個參數,第一參數指定要搜尋的子字串,第二個參數指定從該位置向前搜尋,沒找到返回-1 複製代碼 代碼如下:var stringValue = "hello world";
alert(stringValue.indexOf("o")); //4
alert(stringValue.lastIndexOf("o")); //7
alert(stringValue.indexOf("o",6)); //7
alert(stringValue.lastIndexOf("o",6)); //4

4.字串大小寫轉換方法 toLowerCase()和toUpperCase()
toLowerCase()轉換為小寫,toUpperCase()轉換為大寫

5.字串的比較localeCompare()
localeCompare()可以比較英文,也可以比較中文,大寫字母在前小寫字母在後

6.字串排序: 複製代碼 代碼如下:var stringValue= ["中國","楠楠","俊俊"];
alert(stringValue.sort(stringCompare));
//升序排序函數a-z
function stringCompare(value1,value2) {
return value1.localeCompare(value2); //降序z-a,value1和value2互換位置
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.