 | StringUtilsTrimStart Method |
Trims a sub string from a string
Namespace:
Koden.Utils
Assembly:
Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntaxpublic static string TrimStart(
string text,
string textToTrim,
bool caseInsensitive
)
Public Shared Function TrimStart (
text As String,
textToTrim As String,
caseInsensitive As Boolean
) As String
public:
static String^ TrimStart(
String^ text,
String^ textToTrim,
bool caseInsensitive
)
static member TrimStart :
text : string *
textToTrim : string *
caseInsensitive : bool -> string
Parameters
- text
- Type: SystemString
The text. - textToTrim
- Type: SystemString
The text to trim. - caseInsensitive
- Type: SystemBoolean
if set to true [case insensitive].
Return Value
Type:
String[Missing <returns> documentation for "M:Koden.Utils.StringUtils.TrimStart(System.String,System.String,System.Boolean)"]
See Also