StringExtensionsPascalToSpacedStringArray Method |
Takes in a Pascal Case string and splits it into an array of the words
Namespace: Entelect.ExtensionsAssembly: Entelect (in Entelect.dll) Version: 0.0.79
Syntaxpublic static string[] PascalToSpacedStringArray(
this string input
)
Parameters
- input
- Type: SystemString
The string to replace
Return Value
Type:
StringThe array of words
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
String. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also