|
|
|
|
|
ArrayToString (Function) In french: TableauVersChaîne Converts a one- or two-dimensional array to a character string.
sMesValeurs is string
MonTableau is array of 3 strings
MonTableau[1] = "A"
MonTableau[2] = "B"
MonTableau[3] = "C"
sMesValeurs = ArrayToString(MonTableau)
sMesValeurs is string
MonTableau is array of 2 by 3 strings
MonTableau[1,1] = "A"; MonTableau[1,2] = "B"
MonTableau[1,3] = "C"; MonTableau[2,1] = "D"
MonTableau[2,2] = "E"; MonTableau[2,3] = "F"
sMesValeurs = ArrayToString(MonTableau)
Syntax
Converting a one-dimensional array Hide the details
<Result> = ArrayToString(<WLanguage array> [, <Element separator>])
<Result>: Character string Character string containing the different values found in the array. The array elements are converted into character strings and added to the string while being separated by the <Element separator>. <WLanguage array>: Array variable Name of the one-dimensional array that must be converted into a character string. This array must be created. <Element separator>: Optional character string Separator used to separate the values of the different array elements. The element separator used by default is the CR character (Carriage Return).
Converting a two-dimensional array Hide the details
<Result> = ArrayToString(<WLanguage array> [, <Row separator> [, <Column separator>]])
<Result>: Character string Character string containing the different values found in the array. The array elements are converted into character strings and added to the string. The rows are separated by <Row separator> and the columns are separated by <Column separator>. <WLanguage array>: Array variable Name of the two-dimensional array that must be converted into a character string. This array must be created. <Row separator>: Optional character string Separator used to separate the values of the different rows. The row separator used by default is the CR character (Carriage Return). <Column separator>: Optional character string Separator used to separate the values of different columns. The column separator used by default is TAB. Remarks - The structure arrays supported are the one-dimensional arrays only. In this case, the order of parameters defines the order in the result string.
- The arrays containing UNICODE strings or variants are not supported.
- For the Duration type, the value is converted into thousands of a second.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|