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 7919451
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T15:52:11+00:00 2026-06-03T15:52:11+00:00

Imagine I got some kind of function called by a macro to return an

  • 0

Imagine I got some kind of function called by a macro to return an expression like

(do-something 'argument)

therefore the function has to look like

(defun form-expression (arg)
  `(do-something ',arg))

But when called (form-expression "foobar"), as the wrapping macro has to receive strings as parameters, the result is:

(do-something '"foobar")

How can I “remove” the quotation marks of the given string?

  • 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-03T15:52:14+00:00Added an answer on June 3, 2026 at 3:52 pm

    If I’m understanding you correctly, for an input of “foobar”, you want the result of form-expression to be (do-something 'foobar).

    If that’s the case, use the intern function. You’ll either need to pass the interned string (as in (form-expression (intern "foobar"))), or you’ll need to do type dispatch in the function

    (defun form-expression (arg)
       `(do-something ',(if (stringp arg) (intern arg) arg)))
    

    Actually, since you’re dispatching on the type of the argument, this is a perfect place to use a method.

    (defmethod form-expression (arg) `(do-something ',arg))
    (defmethod form-expression ((str string)) `(do-something ',(intern str)))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Imagine a surface which has got 2 points which are moving over the surface
Imagine you have an entity that has some relations with other entities and you
i'm lookin for a way to make some kind of function into php and
Hey guys, I've got what I imagine is a simple question, but for some
I've got a query that presently looks something like this (I'll simplify it to
I've got a lot of objects, every one has some tags, which are stored
Imagine that we have some divs like that <div class=row chapter node=1>Chapter 1</div> <div
imagine I got an entity: MyEntity { ... Nullable<Int64> MyProperty ... } I would
Imagine a database that tracks payments between customers. Say I've got a Customer table:
Imagine the following table (called TestTable ): id somedate somevalue -- -------- --------- 45

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.