|
|
|
|
|
- CapitalizeEachWord and Unicode
CapitalizeEachWord (Function) In french: PremièreLettreEnMajuscule Capitalizes the first letter of all words in a string. MyString is string = CapitalizeEachWord("first letter of each word in uppercase") // MyString will contain "First Letter Of Each Word In Uppercase"
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. Remark: All characters other than numerical or alphabetical 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 as a parameter is a UNICODE string, the result will be a UNICODE string. Remark: If the result of CapitalizeEachWord on an ANSI string is assigned to a UNICODE string (and vice versa), the conversion will be implicitly performed.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|