Click or drag to resize
UtilitiesTrimUpTo Method
Returns the "Tail" of a string, after (and including) the first instance of specified search string.

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

Parameters

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

Return Value

Type: String
Part of the string starting with sDelim, or the entire string if sDelim not found.
See Also