let str = 'abcdef';
// 0
str = str.slice(0);//返回整個字串 abcdef
str = str.substring(0);//返回整個字串 abcdef
str = str.substr(0);//返回整個字串 abcdef
// 使用乙個引數
str = str.slice(2);//擷取第二個之後所有的字元 cdef
str = str.substring(2);//擷取第二個之後所有的字元 cdef
str = str.substr(2);//擷取第二個之後所有的字元 cdef
// 使用兩個引數
str = str.slice(2,4);//擷取第二個到第四個之間的字元 cd
str = str.substring(2,4);//擷取第二個到第四個之間的字元 cd
str = str.substr(2,4);//擷取從第3個開始往後數4位之間的字元 cdef
// 使用兩個負數
str = str.slice(1,-3);//擷取第二個到第四個之間的字元 bc
str = str.substring(1,-3);//擷取第二個到第四個之間的字元 a #負數轉換為0
str = str.substr(1,-3);//不能為負數,若強行傳遞負數,會被當成0處理 ' ' #負數轉換為0
console.log(str)
VUE擷取字串
let str abcdef 0 str str.slice 0 返回整個字串 abcdef str str.substring 0 返回整個字串 abcdef str str.substr 0 返回整個字串 abcdef 使用乙個引數 str str.slice 2 擷取第二個之後所有的字元 cd...
擷取字串
static function blogsummary str,len 100 else out valtmp break tmp tmpstr outlen mb strlen valtmp,charset out val.rs 2 key right rs 2 key unset rs tags...
擷取字串
擷取字串一般使用string類的substring方法。public string substring int beginindex 返回該字串子串的新字串。子字串開始於指定的位置並且擴充套件到該字串的結尾。public string substring int beginindex,int end...