parse_command_line()

Learn how to use the parse_command_line() function to parse a unicode command-line string.

Parses a Unicode command-line string and returns a dynamic array of the command-line arguments.

Syntax

parse_command_line(command_line, parser_type)

Parameters

NameTypeRequiredDescription
command_linestring✔️The command line value to parse.
parser_typestring✔️The only value that is currently supported is "windows", which parses the command line the same way as CommandLineToArgvW.

Returns

A dynamic array of the command-line arguments.

Example

print parse_command_line("echo \"hello world!\"", "windows")

Output

Result
[“echo”,“hello world!”]