C# 클래스 Netduino.WebServer.Core.Extensions.StringExtensions

파일 보기 프로젝트 열기: martinbuberl/Netduino

공개 메소드들

메소드 설명
Contains ( this s, char c ) : bool
Contains ( this s, string value ) : bool
EndsWith ( this s, string value ) : bool
IsNullOrEmpty ( this s ) : bool
IsWhiteSpace ( this c ) : bool

Determines whether a character is whitespace.

PadLeft ( this s, int count, char pad ) : string
PadRight ( this s, int count, char pad ) : string
Replace ( this s, char oldChar, char newChar ) : string
Replace ( this s, string oldValue, string newValue ) : string
StartsWith ( this s, string value ) : bool

메소드 상세

Contains() 공개 정적인 메소드

public static Contains ( this s, char c ) : bool
s this
c char
리턴 bool

Contains() 공개 정적인 메소드

public static Contains ( this s, string value ) : bool
s this
value string
리턴 bool

EndsWith() 공개 정적인 메소드

public static EndsWith ( this s, string value ) : bool
s this
value string
리턴 bool

IsNullOrEmpty() 공개 정적인 메소드

public static IsNullOrEmpty ( this s ) : bool
s this
리턴 bool

IsWhiteSpace() 공개 정적인 메소드

Determines whether a character is whitespace.
public static IsWhiteSpace ( this c ) : bool
c this
리턴 bool

PadLeft() 공개 정적인 메소드

public static PadLeft ( this s, int count, char pad ) : string
s this
count int
pad char
리턴 string

PadRight() 공개 정적인 메소드

public static PadRight ( this s, int count, char pad ) : string
s this
count int
pad char
리턴 string

Replace() 공개 정적인 메소드

public static Replace ( this s, char oldChar, char newChar ) : string
s this
oldChar char
newChar char
리턴 string

Replace() 공개 정적인 메소드

public static Replace ( this s, string oldValue, string newValue ) : string
s this
oldValue string
newValue string
리턴 string

StartsWith() 공개 정적인 메소드

public static StartsWith ( this s, string value ) : bool
s this
value string
리턴 bool