C# Class ABB.Swum.ConservativeIdSplitter

Splits an identifier on non-alphabetic characters and easy camelcase transitions (lowercase to uppercase).
Inheritance: IdSplitter
Show file Open project: abb-iss/Swum.NET Class Usage Examples

Public Methods

Method Description
Split ( string identifier ) : string[]

Splits an identifier on non-alphabetic characters and easy camelcase transitions (lowercase to uppercase).

Private Methods

Method Description
SplitOnLowercaseToUppercase ( string word ) : string[]

Splits a word where a lowercase letter is followed by an uppercase letter. The word is split at all locations where this occurs.

Method Details

Split() public method

Splits an identifier on non-alphabetic characters and easy camelcase transitions (lowercase to uppercase).
public Split ( string identifier ) : string[]
identifier string The identifier to split
return string[]