Method | Description | |
---|---|---|
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 |
public static Contains ( this sb, string whatToSearchFor ) : bool | ||
sb | this | |
whatToSearchFor | string | |
return | bool |
public static IndexOf ( this sb, char value ) : int | ||
sb | this | |
value | char | |
return | int |
public static IndexOf ( this sb, char value, int startIndex ) : int | ||
sb | this | |
value | char | |
startIndex | int | |
return | int |
public static IndexOf ( this sb, string value ) : int | ||
sb | this | |
value | string | |
return | int |
public static IndexOf ( this sb, string value, bool ignoreCase ) : int | ||
sb | this | |
value | string | |
ignoreCase | bool | |
return | int |
public static IndexOf ( this sb, string value, int startIndex ) : int | ||
sb | this | |
value | string | |
startIndex | int | |
return | int |
public static IndexOf ( this sb, string value, int startIndex, bool ignoreCase ) : int | ||
sb | this | |
value | string | |
startIndex | int | |
ignoreCase | bool | |
return | int |
public static IndexOfAny ( this sb, char values, int startIndex ) : int | ||
sb | this | |
values | char | |
startIndex | int | |
return | int |
public static InsertLine ( this sb, int &index, string value ) : void | ||
sb | this | |
index | int | |
value | string | |
return | void |
public static LastIndexOf ( this sb, string value ) : int | ||
sb | this | |
value | string | |
return | int |
public static Substring ( this sb, int startIndex, int length ) : string | ||
sb | this | |
startIndex | int | |
length | int | |
return | string |