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

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

Parameters

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

Return Value

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