UtilitiesTrimBefore Method (String, Char) |
Returns the "Tail" of a string, after (but NOT including) the First instance of specified delimiter.
See also
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public static string TrimBefore(
string sString,
char chDelim
)
Public Shared Function TrimBefore (
sString As String,
chDelim As Char
) As String
public:
static String^ TrimBefore(
String^ sString,
wchar_t chDelim
)
Parameters
- sString
- Type: SystemString
The string to trim from. - chDelim
- Type: SystemChar
The delimiting character after which the text should be returned.
Return Value
Type:
StringPart of a string after (but not including) chDelim, or the full string if chDelim was not found.
See Also