C# 클래스 FlatRedBall.Utilities.StringBuilderExtensions

파일 보기 프로젝트 열기: vchelaru/FlatRedBall

공개 메소드들

메소드 설명
Contains ( this sb, string whatToSearchFor ) : bool
IndexOf ( this sb, char value ) : int

Get index of a char

IndexOf ( this sb, char value, int startIndex ) : int

Get index of a char starting from a given index

IndexOf ( this sb, string value ) : int

Get index of a string

IndexOf ( this sb, string value, bool ignoreCase ) : int

Get index of a string with case option

IndexOf ( this sb, string value, int startIndex ) : int

Get index of a string from a given index

IndexOf ( this sb, string value, int startIndex, bool ignoreCase ) : int

Get index of a string from a given index with case option

IndexOfAny ( this sb, char values, int startIndex ) : int
InsertLine ( this sb, int &index, string value ) : void
LastIndexOf ( this sb, string value ) : int
Substring ( this sb, int startIndex, int length ) : string

메소드 상세

Contains() 공개 정적인 메소드

public static Contains ( this sb, string whatToSearchFor ) : bool
sb this
whatToSearchFor string
리턴 bool

IndexOf() 공개 정적인 메소드

Get index of a char
public static IndexOf ( this sb, char value ) : int
sb this
value char
리턴 int

IndexOf() 공개 정적인 메소드

Get index of a char starting from a given index
public static IndexOf ( this sb, char value, int startIndex ) : int
sb this
value char
startIndex int
리턴 int

IndexOf() 공개 정적인 메소드

Get index of a string
public static IndexOf ( this sb, string value ) : int
sb this
value string
리턴 int

IndexOf() 공개 정적인 메소드

Get index of a string with case option
public static IndexOf ( this sb, string value, bool ignoreCase ) : int
sb this
value string
ignoreCase bool
리턴 int

IndexOf() 공개 정적인 메소드

Get index of a string from a given index
public static IndexOf ( this sb, string value, int startIndex ) : int
sb this
value string
startIndex int
리턴 int

IndexOf() 공개 정적인 메소드

Get index of a string from a given index with case option
public static IndexOf ( this sb, string value, int startIndex, bool ignoreCase ) : int
sb this
value string
startIndex int
ignoreCase bool
리턴 int

IndexOfAny() 공개 정적인 메소드

public static IndexOfAny ( this sb, char values, int startIndex ) : int
sb this
values char
startIndex int
리턴 int

InsertLine() 공개 정적인 메소드

public static InsertLine ( this sb, int &index, string value ) : void
sb this
index int
value string
리턴 void

LastIndexOf() 공개 정적인 메소드

public static LastIndexOf ( this sb, string value ) : int
sb this
value string
리턴 int

Substring() 공개 정적인 메소드

public static Substring ( this sb, int startIndex, int length ) : string
sb this
startIndex int
length int
리턴 string