|
@@ -13,6 +13,9 @@ namespace CG67.FicheCollege.Domaine
|
|
|
/// <returns>string formaté en type prénom, exemple : MIckAeL, retournera Mickael</returns>
|
|
/// <returns>string formaté en type prénom, exemple : MIckAeL, retournera Mickael</returns>
|
|
|
public static string formatStringPrenom(string str)
|
|
public static string formatStringPrenom(string str)
|
|
|
{
|
|
{
|
|
|
|
|
+ //Cas de sortie directe
|
|
|
|
|
+ if (string.IsNullOrWhiteSpace(str)) return "";
|
|
|
|
|
+
|
|
|
string retour = str.Substring(0, 1).ToUpper();
|
|
string retour = str.Substring(0, 1).ToUpper();
|
|
|
retour += str.Substring(1, str.Length - 1).ToLower();
|
|
retour += str.Substring(1, str.Length - 1).ToLower();
|
|
|
return retour;
|
|
return retour;
|