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 / Sintaxis WLanguage / Operadores
  • Use
  • Notes
  • The [ and ] operator
  • The [[]] operator
  • Loose equality and very loose equality
  • Operators on the character strings and UNICODE
  • Position in a character string
  • WLanguage functions
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
Use
The character strings can be handled by specific WLanguage functions or by the +, [[ and ]] operators.
The operators on character strings are as follows:
  • " + ": To concatenate strings
  • " [ " and " ] ": For optional concatenation of strings.
  • " [[ " and "]]" (double opening brackets and double closing brackets): Sub-string extraction operator
  • " = "Strict equality
  • " ~= ": Flexible equality
  • " ~~ "Very flexible equality
  • " [= "Starts with
  • " [% %]"Dynamic string construction. For more details, see String interpolation.
Text is string = "San Francisco"
Text[[5]]                // Returns "F"
Text[[5 TO 10]]           // Returns "Franci"
Text[[5 TO]]              // Returns "Francisco"
Text[[TO 10]]              // Returns "San Franci"
Text[[10 ON 4]]          // Returns "isco"
Text + " and New York"      // Returns "San Francisco and New York"
IF Text [= "San" THEN Trace(Text)
Notes

The [ and ] operator

The [ and ] operator is used to optionally concatenate strings. The separator is not concatenated if the source string is an empty string ("") or if the source string ends with the separator.
For example:
  • StartString += [EndString]
    EndString is concatenated to StartString only if StartString does not end with EndString.
    For example:
    StartString = "San Francisco"
    EndString = "Francisco"
    StartString += [EndString]
    // StartString contains "San Francisco"

    StartString = "San "
    EndString = "Francisco"
    StartString += [EndString]
    // StartString contains "San Francisco"
  • StartString += [MiddleString] + EndString
    MiddleString is concatenated to StartString only if StartString does not end with MiddleString and if EndString does not start with MiddleString. The separator is not concatenated if the source string is an empty string ("").
    For example:
    StartString = "C:\MyFiles\"
    MiddleString = "\"
    EndString = "MyFile.TXT"
    StartString += [MiddleString] + EndString
    // StartString contains "C:\MyFiles\MyFile.TXT"

    StartString = "C:\MyFiles"
    MiddleString = "\"
    EndString = "\MyFile.TXT"
    StartString += [MiddleString] + EndString
    // StartString contains "C:\MyFiles\MyFile.TXT"

    StartString = "C:\MyFiles"
    MiddleString = "\"
    EndString = "MyFile.TXT"
    StartString += [MiddleString] + EndString
    // StartString contains "C:\MyFiles\MyFile.TXT"
  • MyString = [StartString] + EndString
    StartString is concatenated to EndString only if EndString does not start with StartString.
    For example:
    StartString = "Type"
    EndString = "Type of programming"
    MyString = [StartString] + EndString
    // StartString contains "Type of programming"

    StartString = "Type"
    EndString = " of programming"
    MyString = [StartString] + EndString
    // StartString contains "Type of programming"
Examples:
  • Filling a string with elements separated by CR characters (Carriage Return). The separator is not concatenated if the source string is an empty string.
    ResString is string
    FOR EACH Customer
    	ResString += [CR] + Customer.Name
    END
  • Creating a file path without having to worry about the "\" characters.
    fOpen(DirectoryName + ["\"] + FileName)

The [[]] operator

The [[]] operator is used to extract and replace a substring.
WEBDEV - Código Navegador The [[]] operator can only be used to extract a substring.
For example:
  • STRINGTOEXTRACT[[<Position>]]
  • CHAINEAEXTRAIRE[[<Position>]] = <Nouvelle chaîne>: Replaces the string character with the new string..
    WEBDEV - Código Navegador The above-mentioned syntax is not available in this version.
  • STRINGTOEXTRACT[[<Start> to <End>]]
  • STRINGTOEXTRACT[[<Start> to]]
  • STRINGTOEXTRACT[[to <End>]]
  • STRINGTOEXTRACT[[<Start> on <Number>]]
Caution: If you use a procedure that manipulates strings with the operators [[]], beware of the following syntax. You may inadvertently modify character strings.
For example, the following procedure can modify part of the string.
PROCEDURE P(sString)
IF sString THEN sString="5"
// -- Call to the procedure via the line:
p(sVar[[3 TO]])
To avoid modifying the initial string, the parameter must be passed by value:
  • by using brackets around the parameter in the call to the procedure,
  • by using the Local keyword in the header of the procedure.
Difference with WINDEV 7.5:
  • WINDEV: The operator [[]] used with a negative value in the second terminal returns an empty string ("").
  • WINDEV 7.5: The operator [[]] used with a negative value in the second terminal returns the complete string.
Example Browse a character string, character by character: SAI_HTML and SAI_TEXTE are 2 Edit control fields.
// Variables
sString is string = EDT_HTML
sCharact is string
i is int = 1
// Browse the HTML control
sCharact = sString[[i TO i]]
WHILE i <= Length(sString) 
	i++
	// Process on sCharact here 
	// Next characters
	sCharact = sString[[i TO i]]
END

Loose equality and very loose equality

The loose equality (~=) and the very loose equality (~~) operate on the character strings only (except for the fixed strings). These operators are used to:
  • make no difference between the uppercase characters and the lowercase characters,
  • ignore the space characters found before and after the string whose test must be run,
  • ignore the lowercase accented characters,
  • ignore the space characters and the punctuation characters inside the strings (very loose equality only).
HFSQL equivalence HFSQL Equivalence: To retrieve the very flexible equality equivalence when searching on a text key in an HFSQL data file, it is necessary to configure the following options when describing the field in the analysis:
WEBDEV - Código Navegador The "Very loose equality" operator is not available in browser code.

Operators on the character strings and UNICODE

The available operators are as follows:
  • " + ": To concatenate strings
  • " [ "and " ] "For optional concatenation of strings
  • " [[ " and " ]] "(double hook opening and double hook closing): Sub-string extraction operator
  • " [= ": Starts with
"+", "[" and "]" operators
Two UNICODE strings can be concatenated. A UNICODE string and an ANSI string cannot be concatenated.
Note: If the concatenation of two AINSI strings is assigned to a UNICODE string (and Reverse), the conversion will be implicitly performed.
"[[" and "]]" operator
All the syntaxes of the [[]] operator are available for the Unicode strings.
  • If the string passed as parameter is in ANSI format, the result returned by the [[]] operator will be in ANSI format.
  • If the string passed as parameter is in Unicode format, the result returned by the [[]] operator will be in UNICODE format.
  • The position parameters and the length parameters are expressed in number of characters.
Remark: If the result of the [[]] operator on an ANSI string is assigned to a UNICODE string (and vice versa), the conversion will be implicitly performed..

Position in a character string

  • The position of the first character is set to 1 (and not to 0).
  • Position returns the start position of a specified character string inside another character string.

WLanguage functions

The character strings can also be handled by the functions:
Note operators [[]] are in most cases more efficient than WLanguage functions.
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: 06/12/2024

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