C# 클래스 Nimrod.StringExtensions

파일 보기 프로젝트 열기: resgroup/nimrod

공개 메소드들

메소드 설명
HasNonEmbededWhiteSpace ( this text ) : bool

Return true if the string has whitespaces somewhere at the first embeded level

Join ( this values, string separator ) : string

Call string.Join with argument separator

JoinNewLine ( this values ) : string

Call string.Join with argument Environment.NewLine

RemoveBetween ( this rawString, char enter, char exit ) : string

http://stackoverflow.com/a/39096603/128662

Repeat ( this pattern, int count ) : string

메소드 상세

HasNonEmbededWhiteSpace() 공개 정적인 메소드

Return true if the string has whitespaces somewhere at the first embeded level
public static HasNonEmbededWhiteSpace ( this text ) : bool
text this
리턴 bool

Join() 공개 정적인 메소드

Call string.Join with argument separator
public static Join ( this values, string separator ) : string
values this
separator string
리턴 string

JoinNewLine() 공개 정적인 메소드

Call string.Join with argument Environment.NewLine
public static JoinNewLine ( this values ) : string
values this
리턴 string

RemoveBetween() 공개 정적인 메소드

http://stackoverflow.com/a/39096603/128662
public static RemoveBetween ( this rawString, char enter, char exit ) : string
rawString this
enter char
exit char
리턴 string

Repeat() 공개 정적인 메소드

public static Repeat ( this pattern, int count ) : string
pattern this
count int
리턴 string