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

  • SEARCH
  • Home
  • 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 7885731
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T05:08:45+00:00 2026-06-03T05:08:45+00:00

I am not sure whether I have described the question properly, but currently I

  • 0

I am not sure whether I have described the question properly, but currently I am solving this problem in the following way

QUOTEDSTR := "hello world"
NORMALSTR := $(shell echo $(QUOTEDSTR))

Is there a more built-in way that ‘make’ can do this without calling shell? Thanks

  • 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-03T05:08:47+00:00Added an answer on June 3, 2026 at 5:08 am

    Another option:

    NORMALSTR := $(patsubst "%",%,$(QUOTEDSTR))
    

    Beta’s answer will remove every quote in the string. The above solution will ONLY remove quotes that appear at the beginning and end. For example:

    QUOTEDSTR := -DTITLE=\"Title\"
    

    Beta’s answer will result in a value of -DTITLE=\Title\ while using the patsubst solution this value will not be changed.

    It depends on what you want.

    EDIT

    If you want to handle whitespace and still only match quotes at the beginning/end of the variable as per @stefanct’s comment, you’ll have to play some tricks. First you need to find a non-whitespace character which you know will never appear in your string. Let’s choose ^ but you can choose something else if you want.

    The algorithm is: convert all spaces to this character, then remove the quotes from the resulting single “word”, then convert all instances of that character back to spaces, like this:

    # Get a variable S that contains a single space
    E :=
    S := $E $E
    
    NORMALSTR := $(subst ^,$S,$(patsubst "%",%,$(subst $S,^,$(QUOTEDSTR))))
    

    Of course there are still complications; this handles only spaces for example, not other whitespace characters like TAB.

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

Sidebar

Related Questions

Not sure whether this is the right place, but I have a question related
I'm not sure whether this question belongs on StackOverflow or SuperUser, but here goes
I am not sure whether this only happens to me. Basically if I have
I am not sure whether distinct is the right word for this. I have
I'm not sure whether or not this is the appropriate way of doing this,
we're having this toshiba barcode printer. I'm not sure whether this problem is hardware
I am not sure whether this is the right place to ask this question.
Not sure how to describe what I'm trying to get from this question, but
So far I have done this, I am not sure whether this is right
I am not even sure whether the title of my question is correct, but

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.