精通Javascript系列之資料類型 字串

來源:互聯網
上載者:User

js一共有9種資料類型,分別是:未定義(undefined)、空(null)、布爾型(boolean)、字串(string)、數值(number)、對象(object)、引用(reference)、列表(completion)。其中後3種僅僅作為JS運行中間結果的資料類型,因此不能在代碼中使用,下面先講一下字串String:
字串由零個或者多個字元構成。字元可以包括字母、數字、標點符號和空格。字

符串必須放在單引號或雙引號內:
--------------------------------
例: var a='神筆小c';
var a=“神筆小c”;
--------------------------------
單引號和雙引號可以隨便使用,但是,如果字串裡包含雙引號時應該把整個字元

串放在單引號裡;
字串有length屬性,可以返回字串字元的個數
---------------------------------
例:
var a="hell world";
alert(a.length);
結果:為11;
---------------------------------
Slice、substring、substr方法是從字串中取一段子字串,其中

slice,substring都接受兩個參數,分別為子字串的起始位置和終止位置,返回兩

者之間的子字串,不包括終止位置的那個字元。如果第2個參數不設定,則從起始

位置到字串的末尾。
例:
用Slice和substring方法取出字串:
複製代碼 代碼如下:
<script language="javascript">
var a="abc";
document.write(a.slice(1,3));
document.write(a.substring(1,3));
</script>

結果如下:
A,B
AB
---------------------------------
indexOf()和lastIndexOf()對於搜尋操作十分有效
例:
複製代碼 代碼如下:
<script lanugage="javascript">
var a="abcdef";
document.write(a.indexOf("b"));//從前往後
document.write(a.indexOf("b",3));選擇性參數,從第幾個字元開始往後找
document.write(a.lastIndexOf("e"));從後往前
cocument.write(a.lastIndexOf("d",3));//選擇性參數,從第幾個字元開始往前找
</script>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.