Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8459135
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T13:15:41+00:00 2026-06-10T13:15:41+00:00

How can I parse a command-line option in C++ if it includes an equal

  • 0

How can I parse a command-line option in C++ if it includes an equal sign? An example would be:

./testApp --parameter1=value1

I use the following line to check if the argument does exist with:

bool cmdOptionExists(char** begin, char** end, const std::string& option)
{
    return std::find(begin, end, option) != end;
}

However, if the argument includes an equal sign this will return false for

cmdOptionExists(argv, argv+argc, "parameter1");

Even printing:

for(int i=0;i<argc;i++)
        printf("Argument: %s\n", argv[i]);

does not include any indication of parameter1. Yet, removing the equals sign will print it correctly.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T13:15:42+00:00Added an answer on June 10, 2026 at 1:15 pm

    You can parse them the same way you can parse anything else. In your
    example, argv[1] will probably contain "--parameter1=value1".[1] So
    if you want to break it at the '=', use std::find to find the '=',
    and break it. I’d start by converting it to an std::string, but this
    isn’t really necessary. For a null terminated string like you find in
    argv[i], argv[i] is the “begin” iterator, and argv[i] + strlen(
    argv[i] )
    is the “end” iterator.

    [1] Formally, the standard really doesn’t say much about this, since it
    all happens before anything in your program is executed. Practically,
    however, the most common systems will allow the program which invokes
    your program to pass in pretty much anything—even to argv[0],
    which the standard does sort of specify. And all of the shells or
    command processors I know will use white space to break up the command
    line into words, in the absense of meta-characters. (What is considered
    a meta-character, and how they are treated, varies greatly.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to use optparse to parse command line arguments. I would like my
I use GLib to parse some command-line options. The problem is that I want
I use program options to parse the command line options of my application. I
I'm looking for a way that I can parse command line arguments into my
With C/ C++, getopt_long() can be used to parse command line arguments. Is it
How can I parse integers passed to an application as command line arguments if
Is there a built parser that I can use from C# that can parse
If my command line is: > prog --mylist=a,b,c Can Boost's program_options be setup to
I need to parse a command line string in to the argv format so
I am trying to run the following HelloWorld Script at Command Line import tornado.httpserver

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.