Questions tagged [quote]

The Lisp quote is a special operator that returns its only argument, unevaluated.

The Lisp quote is a special operator that returns its only argument, unevaluated.

638 questions
-2
votes
1 answer

Building a directory path / and double quote

I am trying to build a path to put a file there, but I am using string.Format and the / doesn't appears between the parameters. This is my example: string pdfFile = string.Format("{0}{1}{2}{3}", "MyPDF", "/", this.IdPDF, "/"); Can someone tell…
user2112420
  • 955
  • 5
  • 11
  • 26
-2
votes
1 answer

Real-Time Price Quote Calculator Javascript

I'm having trouble with my price quote calculator, it just doesn't work and I have tried researching why and changing up the code and re-starting before uploading this. My questions Can anybody find the fault in my code to make this…
-3
votes
2 answers

Nice file parsing required

I need to process a file like this keyword,synonym,bidirectional 5487500j,54875,false 76x76,76 x 76,true feuille,"papier,ramette",false 7843000j,78430,false and I need to transform it to a dict : {'5487500j':'54875', '76x76':'76 x…
Chauvinus
  • 35
  • 3
-3
votes
1 answer

How to write an quote in php

produce code to output the string "It's not more than £3" including all speech marks. How can I do that? I am stuck. That's what I wrote : echo "\" It's not more than "\\£3''"; but it's not working!
Hams
  • 1
  • 1
-3
votes
2 answers

How does the browser handle quotes (single, double) as the input to a form?

Imagine a user inputs the following into a form: I'd like to "eat" something. The phrase contains both a single ' and two "'s. If I were to write this direcly as a JS string I'd have to escape the ' to prevent my string from terminating early: var…
Yoshua Wuyts
  • 3,926
  • 1
  • 20
  • 16
-4
votes
3 answers

Placing Double Quotes Around Html Input Value

Heres my Code:
I've ommitted a few things to make this form…
user3213028
  • 27
  • 2
  • 8
-5
votes
1 answer

enforce triple quotes around strings in python

I have a mysql table, which stores some sql queries. The schema is like: CREATE TABLE `queries` (`qry_id` int(11) NOT NULL AUTO_INCREMENT, `qry_text` varchar(2000) COLLATE utf8_unicode_ci NOT NULL, `result_table` varchar(45) COLLATE utf8_unicode_ci…
tonystarkix
  • 77
  • 2
  • 11
-6
votes
1 answer

PHP quote within 2 different quotes

I have a problem with quotes. I can't use " or ' for $gname. What can I do for this. $new_post = array( 'post_content' => ' ..CODES.. $result = mysqli_query($con,"SELECT * FROM wp_games WHERE name = $gname "); ..CODES.. I'm trying to create a post…
Naim Berk Tumer
  • 129
  • 3
  • 11
1 2 3
42
43