C# 클래스 ABB.Swum.ConservativeIdSplitter

Splits an identifier on non-alphabetic characters and easy camelcase transitions (lowercase to uppercase).
상속: IdSplitter
파일 보기 프로젝트 열기: abb-iss/Swum.NET 1 사용 예제들

공개 메소드들

메소드 설명
Split ( string identifier ) : string[]

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

비공개 메소드들

메소드 설명
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.

메소드 상세

Split() 공개 메소드

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
리턴 string[]