mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
742 B
742 B
capitalize
Instructions
Écrire une fonction qui met en majuscule la première lettre de chaque mot et en minuscule les autres lettres du reste du mot d'une string
.
Un mot est une suite de caractères alphanumériques.
Fonction attendue
func Capitalize(s string) string {
}
Utilisation
Voici un éventuel programme pour tester votre fonction :
package main
import (
"fmt"
piscine ".."
)
func main() {
fmt.Println(piscine.Capitalize("Hello! How are you? How+are+things+4you?"))
}
Et son résultat :
student@ubuntu:~/piscine-go/test$ go build
student@ubuntu:~/piscine-go/test$ ./test
Hello! How Are You? How+Are+Things+4you?
student@ubuntu:~/piscine-go/test$