|
|
|
|
|
- Characters taken into account for punctuation and spaces
- <ANSI string>.StartsWith and UNICODE
<ANSI string>.StartsWith (Function) In french: <Chaîne ANSI>.CommencePar Checks whether a character string starts: - with a specific character string.
- with one of the character strings in an array.
// Checks whether the response received from a Web server corresponds to a known response MyResponse is string MyResponse = HTTPGetResult() IF MyResponse.StartsWith("HTTP/1.0 20") <> 0 THEN ProcessSuccessResponse(MyResponse) END
Syntax
Checking whether a character string starts with a specified string Hide the details
<Result> = <Initial string>.StartsWith(<Search string> [, <Search options>])
<Result>: Integer - Size of the corresponding element in the initial string,
- 0 if <Initial string> does not start with <Search string>.
<Initial string>: Character string Text in which the first characters must be checked. <Search string>: Character string Text to be searched at the beginning of <Initial string>. <Search options>: Optional Integer constant (combination of constants) Comparison options used to search for the <Search string> in the <Initial string>: | | ccIgnoreAccent | Searches by comparing strings, ignoring accents. | ccIgnoreCase | Searches by comparing strings, ignoring the case (uppercase/lowercase characters). | ccIgnoreInsideSpace | Searches by comparing strings, ignoring spaces within the strings. | ccIgnorePunctuationAndSpace | Searches by comparing strings, ignoring punctuation and spaces (for more details, see Notes). | ccIgnoreSpace | Compares strings ignoring spaces before and after the strings. | ccNormal (Default value) | Searches by performing a standard comparison between strings, similar to the '=' operator. |
Remarks Characters taken into account for punctuation and spaces The characters taken into account for punctuation and spaces are provided by the system. To get the list of these characters, write the following WLanguage code:
s is string FOR i = 0 TO 255 IF Charact(i) <> StringFormat(Charact(i), ccIgnorePunctuationAndSpace) THEN Â s += Charact(i) END END Info(s) ToClipboard(s)
<ANSI string>.StartsWith and UNICODE You have the ability to use ANSI strings, Unicode strings and buffers in the different parameters of the function. The following conversion rule is used for the Ansi systems (Windows or Linux): - If at least one of the strings is a buffer, all the strings are converted to buffers and the operation is performed with buffers.
- If the first condition is not met and there is at least one Unicode string, all the strings are converted to Unicode and the operation is performed in Unicode (the conversion is performed with the current character set, if necessary).
- Otherwise, the operation is performed in Ansi.
The conversion rule used for Unicode systems is as follows: - If at least one of the strings is a buffer, all the strings are converted to buffers and the operation is performed with buffers.
- Otherwise, the operation is performed in Unicode.
Reminder: The linguistic parameters used are defined during the call to ChangeCharset. Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|