AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de áreas de memoria
  • Sorting the memory area
  • Existence of memory area
  • Equivalence
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Advertencia
A partir de la versión 20, this feature is kept for backward compatibility. We recommend that you use Associative arrays.
Positions on the first element of a memory area and returns the value of this first element.
Ejemplo
// Positions on the first element found in "MyMemoryZone" 
// and returns the value of this element
ResFirst = MemFirst("MyMemoryZone")
sString is string = "A"
sString = Complete(sString, 10000, "B")
Trace(Length(sString))

MemCreate("MZ")
MemAdd("MZ", "1", sString)
sString = MemFirst("MZ")
Trace(Length(sString))
Sintaxis
<Result> = MemFirst(<Memory area>)
<Result>: Any type
  • If the memory area is not empty: return value of the first element, defined by functions MemAdd or MemModify.
  • If the memory area is empty: an empty string ("").
<Memory area>: Character string
Name of the memory area, defined by MemCreate.
Observaciones

Sorting the memory area

The sorts performed by MemSort are taken into account during the call to MemFirst.
If no sort was requested, MemFirst returns the value of the first element added by MemAdd.

Existence of memory area

The existence of the memory area is not checked.
If the specified memory area does not exist, a WLanguage error occurs when MemFirst is used.
To check the existence of a memory area, use MemExist.

Equivalence

The two following syntaxes are equivalent:
Res = MemFirst(<Memory area>)

Res = MemRetrieve(<Memory area>, 1)
Clasificación Lógica de negocio / UI: Código neutro
Componente: wd300std.dll
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/03/2025

Señalar un error o enviar una sugerencia | Ayuda local