1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
---
title: String.prototype.includes()
slug: Web/JavaScript/Referencia/Objetos_globales/String/includes
tags:
- Cadena de texto
- JavaScript
- Prototipo
- Referencia
- String
- metodo
translation_of: Web/JavaScript/Reference/Global_Objects/String/includes
---
<div>{{JSRef}}</div>
<p>El método <strong><code>includes()</code></strong> determina si una cadena de texto puede ser encontrada dentro de otra cadena de texto, devolviendo <code><strong>true</strong></code> o <strong><code>false</code></strong> según corresponda.</p>
<div>{{EmbedInteractiveExample("pages/js/string-includes.html", "shorter")}}</div>
<h2 id="Sintaxis">Sintaxis</h2>
<pre class="syntaxbox notranslate"><code><var>str</var>.includes(<var>searchString</var>[, <var>position</var>])</code></pre>
<h3 id="Parametros">Parametros</h3>
<dl>
<dt><code><var>searchString</var></code></dt>
<dd>Una cadena a buscar en el texto <em><code>str</code></em>.</dd>
<dt><code><var>position</var></code> {{optional_inline}}</dt>
<dd>La posición dentro de la cadena en la cual empieza la búsqueda de <code>searchString</code> (Por defecto este valor es 0).</dd>
</dl>
<h3 id="Valor_devuelto">Valor devuelto</h3>
<p><strong><code>true</code></strong> si la cadena de texto contiene la cadena buscada; en caso contrario, <strong><code>false</code></strong>.</p>
<h2 id="Descripción">Descripción</h2>
<p>Este método permite determinar si una cadena de texto se encuentra incluida dentro de la otra.</p>
<h3 id="Sensibilidad_a_MayúsculasMinúsculas">Sensibilidad a Mayúsculas/Minúsculas</h3>
<p>El método <code>includes()</code> es "case sensitive" (tiene en cuenta mayúsculas y minúsculas). Por ejemplo, la siguiente expresión devolverá <code>false</code>:</p>
<pre class="brush: js notranslate">'Ballena azul'.includes('ballena'); // devuelve false
</pre>
<h2 id="Polyfill">Polyfill</h2>
<p>Este método ha sido agregado a la especificación ECMAScript 2015 y puede no estar disponible en toda las implementaciones de JavaScript.</p>
<p>Sin embargo, puedes usar este método como polyfill:</p>
<pre class="brush: js notranslate">if (!String.prototype.includes) {
String.prototype.includes = function(search, start) {
'use strict';
if (search instanceof RegExp) {
throw TypeError('first argument must not be a RegExp');
}
if (start === undefined) { start = 0; }
return this.indexOf(search, start) !== -1;
};
}
</pre>
<h2 id="Ejemplos">Ejemplos</h2>
<h3 id="Usando_includes">Usando <code>includes()</code></h3>
<pre class="brush: js notranslate">const str = 'To be, or not to be, that is the question.'
console.log(str.includes('To be')) // true
console.log(str.includes('question')) // true
console.log(str.includes('nonexistent')) // false
console.log(str.includes('To be', 1)) // false
console.log(str.includes('TO BE')) // false
console.log(str.includes('')) // true
</pre>
<h2 id="Especificaciones">Especificaciones</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('ESDraft', '#sec-string.prototype.includes', 'String.prototype.includes')}}</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilidad_en_navegadores">Compatibilidad en navegadores</h2>
<p>{{Compat("javascript.builtins.String.includes")}}</p>
<h2 id="Ver_también">Ver también</h2>
<ul>
<li>{{jsxref("Array.prototype.includes()")}}</li>
<li>{{jsxref("TypedArray.prototype.includes()")}}</li>
<li>{{jsxref("String.prototype.indexOf()")}}</li>
<li>{{jsxref("String.prototype.lastIndexOf()")}}</li>
<li>{{jsxref("String.prototype.startsWith()")}}</li>
<li>{{jsxref("String.prototype.endsWith()")}}</li>
</ul>
|