JS常用字串處理方法總結

來源:互聯網
上載者:User

標籤:javascript   字串處理   

1.indexOf()方法,從前往後尋找字串位置,大小寫敏感,從0開始計數。同理,lastIndexOf() 方法從後往前,兩個方法對於相同的檢索條件輸出的結果是一樣的
例如:
<script type="text/javascript">

var str="Hello World!"
document.write(str.indexOf("Hello"))//輸出0
document.write(str.indexOf("World"))//輸出6
document.write(str.indexOf("world"))//輸出-1,因為沒查到

</script>
2.length,採用“XXX.length”的形式訪問,因為它是string對象的方法
<script type="text/javascript">

var str="Hello World!"
document.write(str.length);//輸出12

</script>
3.substr()方法,用於字串截取,一個必選參數,一個選擇性參數,從0開始計數
<script type="text/javascript">

var str="Hello World!"
document.write(str.substr(3));//輸出lo World!,從序數為3的字元開始(包括序數為3的字元),參數只有一個時會一直輸出到末尾
document.write(str.substr(3,7));//輸出lo Worl,如果第一個參數是負數,就是倒著數

</script>
4.charAt()方法,用於返回指定位置的字元,從0開始計數
<script type="text/javascript">

var str="Hello World!"
document.write(str.charAt(1));//輸出e

</script>
5.split()方法,用於把一個字串分割成字串數組
<script type="text/javascript">

var str="Hello World!"
document.write(str.split(" "));//輸出Hello,World!
document.write(str.split(""));//輸出H,e,l,l,o,W,o,r,l,d,!
document.write(str.split(" ",1));//輸出Hello
"2:3:4:5".split(":")//將返回["2", "3", "4", "5"]
"|a|b|c".split("|")//將返回["", "a", "b", "c"]
var words = sentence.split(/\s+/)//使用Regex作為分割參數

</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.