Click or drag to resize
UtilitiesTrimBeforeLast Method (String, Char)
Returns the "Tail" of a string, after (but not including) the Last instance of specified delimiter.

Namespace: Fiddler
Assembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax
public static string TrimBeforeLast(
	string sString,
	char chDelim
)

Parameters

sString
Type: SystemString
The string to trim from.
chDelim
Type: SystemChar
The delimiting character after which text should be returned.

Return Value

Type: String
Part of a string after (but not including) the final chDelim, or the full string if chDelim was not found.
See Also