首頁 >web前端 >js教程 >常見JS中字串的屬性和方法

常見JS中字串的屬性和方法

php中世界最好的语言
php中世界最好的语言原創
2018-03-20 10:48:372200瀏覽

這次帶給大家常見JS中字串的屬性和方法,使用JS中字串屬性和方法的注意事項有哪些,下面就是實戰案例,一起來看一下。

屬性

length:傳回字串的長度

var str='hello world';
alert(str.length); // 11

方法

charAt():傳回指定索引位置的字元

var str='hello world';
alert(str.charAt(4)); // o

charCodeAt():傳回指定索引位置字元的Unicode編碼

var str='a';
alert(str.charCodeAt(0)); // 97

fromCharCode():將Unicode編碼轉換為字串

alert(String.fromCharCode(97)); // a

concat():連接兩個或更多個字串,傳回連接後的字串

var str1='hello';var str2=' world';
alert(str1.concat(str2)); // hello world

indexOf():傳回指定字串第一次出現的位置,沒有回傳-1

var str='hello world,hello moli';
alert(str.indexOf('hello')); // 0

lastIndexOf():傳回指定字符串最後一次出現的位置,沒有回傳-1

var str='hello world,hello moli';
alert(str.lastIndexOf('hello')); // 12

match():找到一個或多個正規表示式的匹配,沒有傳回null

var str='hello world,hello moli';
alert(str.match('hello')); // hello

replace ():取代與正規表示式相符的子字串(預設只取代第一個符合的子字串,加g可以取代所有符合的子字串)

var str='hello world';// 用moli替换worldalert(str.replace(/world/,'moli')); // hello moli

search:傳回與正規表示式相符的子字串的起始位置,沒有回傳-1

var str='hello world';
alert(str.search(/world/)); // 6

slice():傳回指定起始位置(包含起始位置,若為負數則從結尾處開始計算起始位置,即-1表示倒數第一個)到指定結束位置(不包括結束位置,若未指定此參數,則包括從指定的起始位置開始到字串結尾的所有字元)的字串

var str='hello world';
alert(str.slice(6,11)); // world

split():將字串分割為子字串陣列(第二個參數可指定傳回的陣列的最大長度,可選)

var str='h-e-l-l-o';
alert(str.split('-')); // h,e,l,l,o

substr(index,length):提取從指定index(索引,必需,若為負數則從末尾處開始計算起始位置,即-1表示倒數第一個)開始的length(長度,可選,若未指定此參數,則包括從指定的index開始到字串結尾的所有字元)個字元

var str='hello world,hello moli';
alert(str.substr(5,6)); // world

substring():提取指定開始位置(包括開始位置)到結束位置(不包括結束位置,可選,若未指定此參數,則包括從指定的開始位置開始到字元字串結尾的所有字元)的字元

var str='hello moli';alert(str.substring(6,8)); 
// mo// 注:// 与 slice() 和 substr() 方法不同的是,substring() 不接受负的参数

toLowerCase():將字串轉換為小寫

var str='Hello Moli';
alert(str.toLowerCase()); // hello moli

toUpperCase():將字串轉換為大寫

var str='Hello Moli';
alert(str.toUpperCase()); // HELLO MOLI

toString():返回字串(略)

相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!

推薦閱讀:

JavaScript的繼承與原型鏈

前端框架管理

####### #

以上是常見JS中字串的屬性和方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn