How do I go from this string: "ThisIsMyCapsDelimitedString"
...to this string: "This Is My Caps Delimited String"
Fewest lines of code in VB.net is preferred but C# is also welcome.
Cheers!
|
6
|
How do I go from this string: "ThisIsMyCapsDelimitedString" ...to this string: "This Is My Caps Delimited String" Fewest lines of code in VB.net is preferred but C# is also welcome. Cheers!
|
||||
|
|
|
I made this a while ago. It matches each component of a CamelCase name.
For example:
To convert that to just insert spaces between the words:
Edit: Allowing initial lowercase letters, (i.e. |
||||||
|
|
|
Great answer, MizardX! I tweaked it slightly to treat numerals as separate words, so that "AddressLine1" would become "Address Line 1" instead of "Address Line1":
|
||
|
|
|
|
For more variety, using plain old C# objects, the following produces the same output as @MizardX's excellent regular expression.
|
||||
|
|
|
Just for a little variety... Here's an extension method that doesn't use a regex.
|
||
|
|
|
|
Naive regex solution. Will not handle O'Conner, and adds a space at the start of the string as well.
|
||||||
|
|
|
|
|||
|
|
|
|
||||||
|
|
|
Grant Wagner's excellent comment aside:
|
||||
|
|
|
There you are. Works for English only, though.
|
||||||
|
|
|
There's probably a more elegant solution, but this is what I come up with off the top of my head:
|
||
|
|