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
-1
votes
1 answer

Check whether symbol is `quote`?

I want to (more or less) flatten a list. The input is composed of nested lists which may be quoted, and I want to have a list of global variables in the end. I check whether first starts with *, but I end up with a list containing quote. Edit: The…
Pascal
  • 453
  • 2
  • 13
-1
votes
4 answers

Database connect-one single quote between double quote php

$data = "INSERT into detail(id,event) VALUES (1,"quest '15")"; Im having trouble with the single quote '15.i tried to use \'15 but doesnt seem to work.
karthick prasad
  • 103
  • 2
  • 9
-1
votes
1 answer

How to create custom [QUOTE] tag?

I'm developing a forum software suite and I'd like to create a custom html [QUOTE] tag for quoting posts. I've managed to create a nice looking custom tag using css but I can't find a way to display the quoted user in the head of the quote…
-1
votes
1 answer

Error parsing a CSV file using Strawberry Perl with quotes and decimals

I'm using Strawberry Perl 5.18.2.2 on Windows 8.1 64bit with Text::CSV installed, and I'm trying to parse the following CSV file from PayPal. Date, Time, Time Zone, Name, Type, Status, Gross, Fee, Net, From Email Address, To Email Address,…
rboy
  • 2,018
  • 1
  • 23
  • 35
-1
votes
3 answers

MySQL quote escaped still returns error

SELECT * FROM `entries` WHERE MATCH(`title`) AGAINST('Linux\'s') You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 's'' at line 1 I don't have the vaguest idea why…
Alexandrw
  • 1,289
  • 2
  • 8
  • 10
-2
votes
2 answers

how to add the quotes to the object

I want to add the quotes to the object. For example, [As-is] a = 100 [To-be] a = '100' Please somebody help me.
SJJ
  • 25
  • 3
-2
votes
2 answers

Repalce double quote with double double quote

i need to replace " with "" in full xml string. i have this: Dim mioxml As String = "< xml version = "1.0" encoding="UTF-8"> < orderid > Range < /orderid>< operation >RangeA2< /operation>< /order>" mioxml = mioxml.Replace(""","""") But on the firt…
riccio99
  • 11
  • 4
-2
votes
1 answer

RegEx for selecting WORD when it's not between double-quotes

What is the appropriate RegEx ( javascript ) for selecting 'and' when it's not between double-quotes. like below: def abc as "Hello and Welcome" and aaa as "Hi" and bbb as "and" "and"s which are not included in double-quotes should be selected…
Shadow4Kill
  • 178
  • 1
  • 9
-2
votes
1 answer

Trying to build a random quote generator in javascript, but it says my function call value is undefined

So, I'm trying to build a random quote generator in HTML/JavaScript. Well, more of a random Japanese Emoticon Generator. I've had no problems up until recently, where it keeps saying that my newEmoticon function isn't defined. Here is the code -…
Trent
  • 41
  • 5
-2
votes
1 answer

R: how to use paste() function in r for the list arg?

I am confused about the paste() function in R. This is my r code: paste(cols=list("speed###","dist"), rows=list("speed")) The ideal output should be: cols=list("speed###","dist"), rows=list("speed") But the actual output was: "speed### speed"…
Joanna
  • 663
  • 7
  • 21
-2
votes
3 answers

javascript single quote / double quote

this is my original html codes:
But I need it to be converted to javascript, for condition if {{IMAGE(z1)}} do exist, then var x, would be written out as html. …
Dylan Daicy Siao
  • 155
  • 1
  • 3
  • 13
-2
votes
1 answer

Passing parameter with double quotes

I am trying to pass a variable with caracter ", but there is a problem with " of "Big Bang". //mysql_real_escape_string($aux); addslashes($aux); //return Hi! \"Big Bang\" Text\'Text2
Zarlok
  • 13
  • 1
  • 8
-2
votes
1 answer

Double single quote into double quote

I try to use this command into python, but i have problem with single quote into double quote : os.system("psql -h localhost -U postgres -d mabase -c "COPY tmp_import_csv FROM '/var/www/wwwdata/sum_area.csv' DELIMITER ' ' CSV HEADER;"") The quote…
Leasye
  • 261
  • 1
  • 8
  • 19
-2
votes
1 answer
-2
votes
1 answer

String concatenation python

I have a file extension, I got it in this way: fileName, fileExtension = os.path.splitext(abspath) now I need my file extension to became a pattern, something like '*.fileExtension', included the quote characters. I should use it in a fnmatch like…
Antonio Falcone
  • 181
  • 3
  • 17
1 2 3
42
43