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: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public static string[] Parameterize(
string sInput,
bool bAllowSQuote
)
Public Shared Function Parameterize (
sInput As String,
bAllowSQuote As Boolean
) As String()
public:
static array<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:
StringAn array of strings
See Also