SORU
9 Kasım 2010, Salı


Dize üst bir durumda (maksimum performans için)ilk harfi

TextBox 3 *var ve istiyorumveri girişiolabilirher zaman kaydedilirSERMAYE İLK HARFİ ile.

Örnek:

"red" --> "Red"
"red house" --> " Red house"

Bunu nasıl başarabilirperformansı en üst düzeye çıkarma? [Bu eski bir soru 2010 sordu

CEVAP
9 Kasım 2010, Salı


public string FirstLetterToUpper(string str)
{
    if (str == null)
        return null;

    if (str.Length > 1)
        return char.ToUpper(str[0])   str.Substring(1);

    return str.ToUpper();
}

Eski cevap: Bu harf için her ilk harf yapar

public string ToTitleCase(string str)
{
    return CultureInfo.CurrentCulture.TextInfo.ToTitleCase(str.ToLower());
}

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • bethliebert

    bethliebert

    23 EKİM 2008
  • SuperPrincessjo

    SuperPrinces

    1 EKİM 2010
  • FF Radioo

    FF Radioo

    14 ŞUBAT 2007