This question already has an answer here:
Is there a nice function to to turn something like
FirstName
to this:
First Name?
|
This question already has an answer here: Is there a nice function to to turn something like FirstName to this: First Name? |
|||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
See: .NET - How can you split a "caps" delimited string into an array? Especially:
|
|||||
|
|
Here's an extension method that I have used extensively for this kind of thing
It also handles strings like "IBMMakeStuffAndSellIt", converting it to "IBM Make Stuff And Sell It" (IIRC) |
|||
|
|
|
The brute force approach is likely to be the best approach.
|
|||||||
|
|
Regex: http://weblogs.asp.net/jgalloway/archive/2005/09/27/426087.aspx http://stackoverflow.com/questions/773303/splitting-camelcase (probably the best - see the second answer) http://bytes.com/topic/c-sharp/answers/277768-regex-convert-camelcase-into-title-case
|
|||
|
|
|
You can use a regular expression:
In code:
|
|||||
|
|
||||
|
|