緩衝區是一種臨時存儲器,用於在將數據從一個位置移動到另一位置時存儲數據。它就像一個整數數組。
Buffer.includes()方法檢查提供的值是存在還是包含在緩衝區中。
用法:
buffer.includes( value, byteOffset, encoding );
參數:此方法接受以下列出的三個參數:
- value:它包含您要在緩衝區中找到的值。
- byteOffset:它是可選參數。它是指從中搜索輸入緩衝區元素的起始索引。默認值為0。
- encoding:如果所需的值為字符串,那麽您還可以添加編碼類型。默認值為utf-8。
返回值:此方法根據值返回布爾值True或False。如果在緩衝區中找到值,則返回True,否則返回False。
以下示例說明了Node.js中Buffer.includes()方法的使用:
範例1:
// Node.js program to demonstrate the
// Buffer.includes() Method
// Creating a buffer
const buffer = new Buffer('Geek One');
console.log(buffer.includes('Geek'));
輸出:
true
範例2:
// Node program to demonstrate the
// Buffer.includes() Method
const buffer = Buffer.from(
'GeeksforGeeks:A computer science portal');
// Started checking the value from index 15 only
const output = buffer.includes('Geek', 15);
console.log(output);
輸出:
false
注意:上麵的程序將通過使用node index.js
命令。
參考: https://nodejs.org/api/buffer.html#buffer_buf_includes_value_byteoffset_encoding
相關用法
注:本文由純淨天空篩選整理自Abhishek7大神的英文原創作品 Node.js | Buffer.includes() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。