Bridge

String..::..TrimStart Method (array<Char>[]()[][])

Removes all leading occurrences of a set of characters specified in an array from the current String object.

Namespace:  System
Assembly:  Bridge (in Bridge.dll)

Syntax


[TemplateAttribute]
public string TrimStart(
	params char[] values
)
<TemplateAttribute> _
Public Function TrimStart ( _
	ParamArray values As Char() _
) As String
[TemplateAttribute]
public:
String^ TrimStart(
	... array<wchar_t^>^ values
)

Parameters

values
Type: array<System..::..Char>[]()[][]

Return Value

The string that remains after all occurrences of characters in the trimChars parameter are removed from the start of the current string. If trimChars is null or an empty array, white-space characters are removed instead.