Click or drag to resize
UtilitiesParameterize Method (String, Boolean)
Tokenize a string into tokens. Delimits on unquoted whitespace ; quote marks are dropped unless preceded by \ characters. Some special hackery to allow trailing slash not escape the final character of the entire input, so that: prefs set fiddler.config.path.vsplugins "F:\users\ericlaw\VSWebTest\" ...doesn't end up with a trailing quote.

Namespace: Fiddler
Assembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax
public static string[] Parameterize(
	string sInput,
	bool bAllowSQuote
)

Parameters

sInput
Type: SystemString
The string to tokenize
bAllowSQuote
Type: SystemBoolean
Are single-quotes allowed to as escapes?

Return Value

Type: String
An array of strings
See Also