ASP existe método

El método ASP Exists se utiliza para devolver un valor booleano que devuelve verdadero si existe la clave especificada; de lo contrario, devuelve falso.

Sintaxis:

DictionaryObject.Exists(key)

Parámetros: Este método tiene un solo parámetro como se mencionó anteriormente y se analiza a continuación:

  • Clave: Especifica el nombre del valor de la clave a buscar en el diccionario.

Ejemplo: el siguiente código demuestra el método ASP Dictionary.Exists.

ASP

<%
dim dict
  
'Create a new dictionary
set dict=Server.CreateObject("Scripting.Dictionary")
  
'Add values to the dictionary
dict.Add "g","geeks"
dict.Add "p","placements"
dict.Add "c","competitive"
  
'Check if the key exists in the dictionary
if dict.Exists("g")=true then
  Response.Write("The 'g' key exists in the dictionary")
else
  Response.Write("The 'g' key does not exist in the dictionary")
end if
  
Response.Write("<br>")
  
'Check for another key in the dictionary
if dict.Exists("m")=true then
  Response.Write("The 'm' key exists in the dictionary")
else
  Response.Write("The 'm' key does not exist in the dictionary")
end if
  
set dict=nothing
%>

Producción:

The 'g' key exists in the dictionary
The 'm' key does not exist in the dictionary 

Publicación traducida automáticamente

Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *