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
Name | Type | Required | Description |
---|---|---|---|
command_line | string | ✔️ | The command line value to parse. |
parser_type | string | ✔️ | 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!”] |
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.