|
|
|
|
|
- Middle and UNICODE
- Miscellaneous
Middle (Function) In french: Milieu Extracts: - a substring from a string starting at a specified position.
- part of a buffer starting at a specified position.
Remark: The same feature can be obtained with the [[]] operator. // Extract characters Middle("Eponine", 2, 3) Â // Returns "pon" Middle("Eponine", 2) Â Â // Returns "ponine" Middle("Eponine", 50) Â Â // Returns "" Middle("Eponine", 2, 50) Â // Returns "ponine" // Equivalent to // MyString is string = Eponine // MyString = MyString[[2,50]] Â MyString is string = "Antananarivo - Madagascar" Middle(MyString, 10, 7) Â // Returns "ivo - M" Syntax
Extracting a substring from a string Hide the details
<Result> = Middle(<Initial string> , <Start position> [, <Length>])
<Result>: Character string - Part of <Initial string>.
- Empty string ("") if <Start position> is greater than the length of <Initial string>.
- EOT if <Start position> and/or <Length> are negative. A WLanguage error occurs (non-fatal error). To get more details on the error, use ErrorInfo.
<Initial string>: Character string Character string containing the substring to extract. This string is not modified. <Start position>: Integer Position of the first character to extract. If <Start position> is null, the extraction starts at the beginning of the string. <Length>: Optional integer Number of characters to extract. If this parameter is not specified or is greater than the number of characters after <Start position>, the string is returned from <Start position>. Remarks Middle and UNICODE If the string passed as a parameter is an ANSI string, the result will be an ANSI string. If the string passed as a parameter is a UNICODE string, the result will be a UNICODE string. Reminder: In UNICODE, each character uses two bytes.. Therefore, the memory size of UNICODE strings is twice the number of characters actually contained in the string. The fist character in the string is at index 1. Remark: If the function is used on an ANSI string and the result is assigned to a UNICODE string or vice versa, a conversion will be implicitly performed. Miscellaneous The same feature can be obtained with the [[]] operator.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|