首頁 >web前端 >js教程 >Javascript中的String物件詳談_javascript技巧

Javascript中的String物件詳談_javascript技巧

WBOY
WBOY原創
2016-05-16 16:57:171013瀏覽

Sting字串物件是Javascript提供的內建物件之一。

這裡特別注意,字串中的第一個字元是第0位的,第二個才是第1位的。

1.建立字串物件的方法

[var] String 物件實例名= new String(string)

或是var String 物件實例名稱= 字串值

範例:

var str = "Hello World";

var str1 = new String("This is a string");

2 .String的屬性

length: 傳回字串的長度

var intlength = str.length //intlength = 11

3.String的方法

charAt(*): 傳回字串位於第*位的單一字元

var x = "abcdefg"; var y = x.charAt(3); //y="d"

charCodeAt(*): 返回字符串位於第*位的單個字符的ASCII碼

不作贅述

複製代碼 程式碼如下:

fromCharCode(): 接受一個指定的Unicode值,然後傳回字串。

document.write(String.fromCharCode(72,69,76,76,79)); //輸出結果是HELLO

indexOf():從字串中找另一個字符串對象,找成功回傳位置,否則回傳-1

document.write("children".indexOf("l",0)); //輸出結果是3

document. write("children".indexOf("l",1)); //輸出結果是3

document.write("children".indexOf("l",4)); //輸出結果是-1

lastIndexOf():和indexOf()方法類似,不同的是找方向相反,從後往前找

document.write("children".lastIndexOf("l ",4)); //輸出結果是3

split(分隔符字元): 傳回一個數組,數組是從字串中分離出來的,分隔符字元決定了分離的地方。

'l&o&v&e'.split('&'); //傳回陣列l,o,v,e

substring():相當於字串的裁切功能

substring([,])

document.write("children".substring(1,3)); //輸出結果是hil

substr() :也相當於裁剪,注意與substring()的不同

substr([,])
複製程式碼


程式碼如下:


document.write("children".substr(1,3)); //輸出結果是hil。這裡要注意與substing比較,雖然結果是一樣的,但演算法和想法都是不一樣的。

toLowerCase()和toUpperCase():功能類似,只是傳回一個原來字串相同的字串,唯一的差別就是前者所有的字母都為小寫,後者為大寫。
document.write("LOVE".toLowerCase()); //輸出結果是love document.write("love".toUpperCase()); //輸出結果是LOVE
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn