當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript Symbol.split屬性用法及代碼示例


JavaScript Symbol.split 符號用於在與正則表達式匹配的索引處拆分字符串。

用法

Symbol.split(string)

參數

返回值

從給定表達式拆分的字符串

瀏覽器支持

Chrome 32
Safari 8
Firefox 29
Opera 19

示例

<script>
//JavaScript to illustrate Symbol.split
class Sp 
{
  constructor(value)
 {
    this.value = value;
  }
 [Symbol.split](string) 
{
var index = string.indexOf(this.value);
   return this.value; 
}
}
document.write("We split point from the string JavaTpoint<br>")
document.write('JavaTpoint'.split(new Sp('point')));
//expected output:We split point from the string JavaTpoint
//point
</script>

輸出:

We split point from the string JavaTpoint
point.






相關用法


注:本文由純淨天空篩選整理自 JavaScript Symbol.split Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。