此方法提取字符串的一部分,並返回一個新的字符串。
語法
string.slice( beginslice [, endSlice] );
下面是參數的詳細信息:
注意:作為一個負指數,endSlice表示從字符串末尾的偏移。 string.slice(2,-1)提取第二到最後一個字符,字符串的第三個字符。
返回值:
例子:
<html> <head> <title>JavaScript String slice() Method</title> </head> <body> <script type="text/javascript"> var str = "Apples are round, and apples are juicy."; var sliced = str.slice(3, -2); document.write( sliced ); </script> </body> </html>
這將產生以下結果:
les are round, and apples are juic