📜  Node.js Buffer.includes() 方法

📅  最后修改于: 2022-05-13 01:56:55.671000             🧑  作者: Mango

Node.js Buffer.includes() 方法

缓冲区是一种临时内存存储器,用于在将数据从一个地方移动到另一个地方时存储数据。它就像一个整数数组。

Buffer.includes() 方法检查提供的值是否存在或包含在缓冲区中。

句法:

buffer.includes( value, byteOffset, encoding );

参数:此方法接受下面列出的三个参数:

  • value:它保存您要在缓冲区中找到的值。
  • byteOffset:可选参数。它指的是搜索输入缓冲区元素的起始索引。默认值为 0。
  • 编码:如果需要的值是字符串,那么你也可以添加编码类型。默认值为 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