|
|
|
|
|
- CapitalizeEachWord and Unicode
CapitalizeEachWord (Function) In french: PremièreLettreEnMajuscule Capitalizes each word in a specified string. New in version 2025MaChaîne is string = CapitalizeEachWord("première lettre de chaque mot en majuscule")
Syntax
<Result> = CapitalizeEachWord(<String to convert> [, <Options>])
<Result>: Character string String with the first letter of each word in uppercase. <String to convert>: Character string Character string to use. Note: All characters other than numeric or character sets are considered as word separators. <Options>: Optional integer Options for converting the first letter of each word to uppercase:
| | ccNormal (Default value) | Accented characters retain their accent mark when capitalized. | ccIgnoreAccent | The first letter of each word is capitalized without accent marks. |
Remarks CapitalizeEachWord and Unicode If the string passed as a parameter is an ANSI string, the result will be an ANSI string. If the string passed in parameter is in Unicode format, the result will be in Unicode format. Note If the result of the CapitalizeEachWord function used on an ANSI string is assigned to a Unicode string (and vice versa), ANSI/Unicode conversion will be implicitly performed.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|