 | StringUtilsFromCamelCase Method |
Tries to create a phrase string from CamelCase text.
Will place spaces before capitalized letters.
Note that this method may not work for round tripping
ToCamelCase calls, since ToCamelCase strips more characters
than just spaces.
Namespace:
Koden.Utils
Assembly:
Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntaxpublic static string FromCamelCase(
string camelCase
)
Public Shared Function FromCamelCase (
camelCase As String
) As String
public:
static String^ FromCamelCase(
String^ camelCase
)
static member FromCamelCase :
camelCase : string -> string
Parameters
- camelCase
- Type: SystemString
[Missing <param name="camelCase"/> documentation for "M:Koden.Utils.StringUtils.FromCamelCase(System.String)"]
Return Value
Type:
String[Missing <returns> documentation for "M:Koden.Utils.StringUtils.FromCamelCase(System.String)"]
See Also