K
K
kevus2018-07-30 14:03:41
C++ / C#
kevus, 2018-07-30 14:03:41

Each letter of the word in capital case?

Hello.
There is this code:

string textyy = s.ToLower();
return textyy;

TEXT ANY TEXT

turns into
text any text

How to format in
Text Any Text

?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Anton Mashletov, 2018-07-30
@kevus

string text = "HELLO ПРИВЕТ";
    System.Globalization.TextInfo ti = System.Globalization.CultureInfo.CurrentCulture.TextInfo;
    string result = ti.ToTitleCase(text.ToLower());
    MessageBox.Show(result); // Hello Привет

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question