当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js Buffer.includes()用法及代码示例


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

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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。