vote up 1 vote down star

I'm currently trying to find an easy way to convert a Visual (Managed) C++ string to title case. In VB.NET, you can use either:

StrConv(sampleString, vbProperCase)

or

sampleString = System.Globalization.CultureInfo.CurrentUICulture.TextInfo.ToTitleCase(sampleString)

In C# you use:

sampleString = System.Globalization.CultureInfo.CurrentUICulture.TextInfo.ToTitleCase(sampleString)

How do I do it in Visual C++? Is it something similar that I just can't seem to find?

flag

Is this managed C++ or not? – 280Z28 Oct 23 at 16:57
Yes, it is Managed. – Sivvy Oct 23 at 16:59

2 Answers

vote up 1 vote down check

If you're talking about managed C++, you can use the same functions as in C#/VB.Net.

If you mean native C++, then:

  1. Pretty certain there's nothing of the sort in the language itself.
  2. AFAIK not in the Win32 API as well.
  3. Your best hope then is to find such a function in some library (I personally can't think of one).
link|flag
It is managed, but for some reason I intellisense only gives me a "get" function once I use "System::Globalization::CultureInfo::CurrentUICulture" – Sivvy Oct 23 at 17:01
Found the answer at msdn.microsoft.com/en-us/library/… They are the same, but it would seem my poor grasp of the language prevented me from getting it to work. – Sivvy Oct 23 at 17:23
vote up 1 vote down

Check the documentation on TextInfo.ToTitleCase it has examples for Managed C++

link|flag
I've already seen that. It only shows C# code. – Sivvy Oct 23 at 17:04
Check your language filter on the top of the page. You might have MSDN set to only show you C# code. – Ryan Rinaldi Oct 23 at 20:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.