|
Character codes of the characters that will be escaped by `quoteWinArg(_, true)`.
|
|
Character codes of the characters that will be escaped by `quoteWinArg(_, true)`.
|
|
public static var winMetaCharacters = [" ".code, "(".code, ")".code, "%".code, "!".code, "^".code, "\"".code, "<".code, ">".code, "&".code, "|".code, "\n".code, "\r".code, ",".code, ";".code];
|
|
public static var winMetaCharacters = [" ".code, "(".code, ")".code, "%".code, "!".code, "^".code, "\"".code, "<".code, ">".code, "&".code, "|".code, "\n".code, "\r".code, ",".code, ";".code];
|
|
public static function quoteWinArg(argument:String, escapeMetaCharacters:Bool):String {
|
|
public static function quoteWinArg(argument:String, escapeMetaCharacters:Bool):String {
|
|
// If there is no space, tab, back-slash, or double-quotes, and it is not an empty string.
|
|
// If there is no space, tab, back-slash, or double-quotes, and it is not an empty string.
|