Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
StringTools[Capitalize] - capitalize each word in a string
StringTools[CamelCase] - convert a string to camel case
Calling Sequence
Capitalize( s )
CamelCase( s )
Parameters
s
-
Maple string
Description
The Capitalize(s) command changes each word in the string s to its capitalized form.
A word is a maximal sequence of alphanumeric characters delimited by another character, or the beginning or end of the string.
The capitalized form of a string is the string obtained by replacing each alphabetic character that begins a word with the corresponding uppercase character, and replacing each non-leading alphabetic character in each word with the corresponding lowercase character. Characters that are not part of a word are not affected.
The CamelCase(s) command converts a string of concatenated words to camel case. The term camel case refers to the capitalization convention used when forming programming language identifiers from multiple words, in which the first letter of each constituent word is capitalized to aide readability. For example, LinearAlgebraicGroups is a camel case string, whereas linearalgebraicgroups and linear_algebraic_groups follow different conventions.
Sometimes, a string like linearAlgebraicGroups is also referred to as camel case, wherein only interior word starts are capitalized. This form of camel case can be obtained from the output of CamelCase by converting the first letter of the result to lowercase.
Examples
There is not always a unique, correct solution to the camel case problem for a given string. In the following example, the result is probably not what was intended.
Since the apostrophe is a word separator, the result in the next example is not the string ``Don't.''
See Also
string, StringTools, StringTools[LowerCase], StringTools[PatternDictionary], StringTools[UpperCase]
Download Help Document