Tagged Questions
The quote tag has no wiki summary.
20
votes
6answers
790 views
What is the difference between 1 and '1 in Lisp?
I had never really thought about whether a symbol could be a number in Lisp, so I played around with it today:
> '1
1
> (+ '1 '1)
2
> (+ '1 1)
2
> (define a '1)
> (+ a 1)
2
The above ...
5
votes
2answers
158 views
Difference between single and double quotes in bash
In Bash shell scripting, what is the difference between single quotes ('') and double quotes ("")?
5
votes
3answers
106 views
Quote - capture - question
Could someone explain, why I can use $1 two times and get different results?
perl -wle '"ok" =~ /(.*)/; sub { "huh?" =~ /(.*)/; print for @_ }->( "$1", $1 )'
(Found in: How to exclude submatches ...
4
votes
1answer
575 views
HTML5 block-quote with author
Hi I'm seeing a great number of different ways to implementat blockquote in html but it doesn't seem clear in its documentation how should I properly format a blockquote let's say of a famous quote ...
4
votes
3answers
142 views
c# string that has to contain quote "
string aniPattern=@"(?si:<option value=\\\"(?<year>.*?)\\)";
This breakes because the " in the middle. But I need that because I use it in a regex.
I tried to use string ...
3
votes
4answers
66 views
Python Block Formatting
How do I indent a multiline string in the context of string formatting? e.g.
'''
<
%s
>
''' % (paragraph)
where paragraph contains newlines. ('foo\nbar')
If I use the above code, I get ...
3
votes
2answers
72 views
Anyone can give me a summary of “single quote mark” usage in Ada?
I've just read "Ada Programming" but I'm a bit confused about how to use ' (single quote mark) in Ada.
I can understand that ' is used for reference attribute. AAA'Image(..), BBB'Value(..)
However, ...
3
votes
2answers
119 views
controlling evaluation in scheme (guile)
This seems like a simple question; perhaps it is so simple that it is difficult to find a search that will find the answer. In Scheme (specifically, the Guile implementation if that makes any ...
3
votes
3answers
195 views
Recursive quote in a forum
I have wrote a Quote function for my own personal forum, in a website written with PHP.
The message quoted tags looks like [quote=username]message[/quote], so I wrote that function :
...
3
votes
2answers
151 views
Problem Locating <blockquote> Images Around Quote With CSS
On this page I'm trying to position quote images around the block quote but they won't sit right.
This is the CSS:
blockquote {
padding-left:10px;
color:#444;
font-style: normal;
...
2
votes
3answers
75 views
Single quote escape in javascript function parameters
I need to escape single quotes in javascript function parameters to avoid this
onclick="Javascript:INSERT_PRODUCT('188267','WILL AND GRACE','32311','L'ANNIVERSARIO DINOZZE ...
2
votes
1answer
69 views
Need help using eval and quote funct
My code looks like this:
(eval `(setf (fdefinition name-funct)(lambda ............)))
To create my funct I have used the quote... but name-funct is a variable... How can I get say to the ...
2
votes
2answers
72 views
Lisp: Evaluation of quotes
Which of the following expressions has correct lisp syntax?
(+ 1 (quote 1))
==> 1 (???)
(+ 1 (eval (quote 1))
==> 2
I'm currently writing my own lisp interpreter and not quite sure how to ...
2
votes
2answers
102 views
Vim: Delete mark '
I'm trying to delete the mark ' (single quote) but I dont know how.
I'm doing delm \' but it doesn't work. I also tried every combination I could think of.
I realize this is more a Vim script ...
2
votes
2answers
48 views
Quote equality test in batch
How can I test my string as if it is a quote (") or not.
The default escape character is '^', isn't it?
So I tried the following but with no success yet:
if "!first_char!" == "^"" (...)
I tried ...
2
votes
2answers
214 views
Parse External JSON With JQuery $.getJSON?
I want to get a quote from iheartquotes and add it to a div when the page loads. I currently have this code but do not know why it wont work
<script type="text/javascript">
...
2
votes
4answers
99 views
How can I accommodate a string with both single and double quotes inside of it in Javascript
I have an application, and it is fed some HTML. It then needs to put that HTML into a string. This HTML contains single and double quotes. Is it possible, in javascript, to declare a string with ...
2
votes
1answer
68 views
Why is my SQLite database bloated to 12MB (from 280KB) with single quotes?
I'm using SQLiteManager. I had a 280KB database that bloated to over 12MB in just one day. I wasn't doing anything atypical. I still only have about 4-6 light results in the entire database.
When I ...
2
votes
3answers
255 views
How do I make a WordPress blockquote appear on the left side of the page instead of the right?
I've very new at this. I appreciate any help I can get with this. I haven't found an answer on the internet yet. (At least, not one I understand!)
When I use blockquote in WordPress, it shows up on ...
2
votes
0answers
111 views
quote inside quote for then i should see cucumber prolmem rails
I can clearly see the text in browser.
characters should be "R", "P", or "B".
But when I write a step a cucumber step
Then I should see "characters should be \"R\", \"P\", or \"B\"."
It says its
...
2
votes
2answers
318 views
ruby code for modifying outer quotes on strings?
Does anyone know of a Ruby gem (or built-in, or native syntax, for that matter) that operates on the outer quote marks of strings?
I find myself writing methods like this over and over again:
...
2
votes
4answers
354 views
What is the proper Lua pattern for quoted text?
I've been playing with this for an hour or tow and have found myself at a road block with the Lua pattern matching utilities. I am attempting to match all quoted text in a string and replace it if ...
2
votes
2answers
80 views
Javascript::How to identify what the character (or string) was inserted on a editable div?
I want to know how to identify what the character inserted on a div editable...
I want to see if the user type a single or double quotation mark, and give a specific class to this quote to the text ...
2
votes
1answer
278 views
MIT Scheme on the Mac: When I type the single quote key I get an acute accent character
I am running MIT Scheme on Snow Leopard. The problem is: when I type single quote (') I get the acute accent character (´) instead. That makes it almost impossible to program in Scheme, because I ...
1
vote
2answers
71 views
Updated - PHP exec, system or passthru all remove single or double quotes
When ever i try to execute a command to the shell via php's exec/passthru/system functions it seems to remove quotes from the command.
$str_file = '1323988284_700.csv';
exec("/usr/bin/lftp -e 'set ...
1
vote
6answers
63 views
Outputting jQuery in PHP, quotes issue
I have this i'm trying to output in PHP:
$this->Js->buffer("
var searchTerm = $(this).html();
var searchId = $(this).attr('data-tag');
$('.tags').append('<input type='text' ...
1
vote
0answers
112 views
Strange issue with obtaining stock quotes from yahoo finance [closed]
I've been using yahoo finance for obtaining stock quotes in a java program for about 6 months now and haven't had any issues until recently. I'm using the following url to retrieve the quote for the ...
1
vote
3answers
141 views
Unable to remove right single quotation mark
Been trying to remove a right single quotation mark from data coming into a Perl form unsuccessfully. If I paste the text: ( Can’t Be Dodged ) into the form it never removes the right single quotation ...
1
vote
1answer
121 views
Disable Table Name Double Quoting on FluentNhibernate
I am switching my application to Postgresql, All the tables in my schema are in lowercase and when I'm doing a query with NHibernate it is adding double quotes to the table name which on the mappings ...
1
vote
3answers
108 views
why are there periods in php [closed]
Possible Duplicate:
What does the 'period' character (.) mean if used in the middle of a php string?
as the title says,
why are the periods?
such as
...
1
vote
1answer
99 views
What roles do minus signs and single quotation marks play in if statements?
In the following code, adding the same letter to both operands of the comparison changes the result. Despite - being not greater than j, -k is greater than jk.
This only happens if one of the ...
1
vote
5answers
420 views
Strip out all single quotes
I am looking for the best way to strip single quotes as it keeps breaking my important.
so
The image’s emotiveness enables
only comes through as
The image
It breaks at the single quote ' ...
1
vote
1answer
40 views
Online Quote Page
I have three input boxes; First Name / Last Name / E-Mail Address
A user can select from three groups of radio Buttons;
Service 1: Option 1 / Option 2 / Option 3
Service 2: Option 1 / Option 2 / ...
1
vote
1answer
164 views
Best .php CMS for handling ad-hoc product quotes
I am developing a new e-commerce enabled site for a company that sells two types of products which I will call: (1) widget items, which are minimally customizable, and (2) cars, which are highly ...
1
vote
2answers
154 views
how can i reimplement backquote in common lisp?
I have to remake backquote (with unquote and unquote-splicing) without using the builtins reader macros `,@
The behaviour expected is:
> (BACKQUOTE (A B (LIST ‘C ‘D) (COMA (LIST ‘E ‘F)
...
1
vote
1answer
1k views
Struts2 property tag. Force to escape single quote
I have rather silly problem.
Struts2 property tag doesn't escape single quote ('). Such behavior breaks my JavaScript code.
It does do escape double quote (") using html entities, but not single ...
1
vote
3answers
207 views
Defining and using a build timestamp for GNU Make on Windows
I am trying to build some software on Windows using both GNU make 3.81 and an ancient make distributed with Wind River Tornado (make 3.76).
So far, I managed to capture the date from windows:
...
1
vote
1answer
143 views
Bewildering behavior of `substitute` in R
Guys, this drives me crazy.
This works as expected:
eobj <- substitute(obj <- list(a, b), list(a = 32, b = 33))
eval(eobj)
obj
[[1]]
[1] 32
[[2]]
[1] 33
Now, try this:
efun <- ...
1
vote
1answer
781 views
Define comment and quote in flex and bison and lexical errors
I have to create a lexical and syntax analyzer for a c-like language. In this language we define as comment "everything that exists after the symbol % until the end of line". Are the following ...
0
votes
1answer
39 views
Lisp Coerce and Set function explanation
I try to do this directly to the interpret:
(setf example (coerce "blablabla" 'list))
and works fine. Infact (car example) returns #\b
but if I try this:
(defun myfun (string) ( (setf example ...
0
votes
2answers
81 views
Bash.org Quote Of The Day
So i've been working on my website in which i'd like to add a random quote each time the page is loaded from bash.org, i Kinda got it working but i was thinking about using "preg_replace" instead of ...
0
votes
0answers
16 views
Custom PCB in bulk [closed]
Not exactly a programming question but still technical and was wondering if anyone had experience in the area.
I need a small printed circuit board with a motion sensor and an LED that is battery ...
0
votes
4answers
40 views
How to deal with sigle quote in javascript in jsp page?
onclick= "_deleteWPSchemeData(${viewWPMasterGrid.id}, '${viewWPMasterGrid.name}')"
${viewWPMasterGrid.name} retutrns me a string(for e.g. W.P.WINT OFF ALL'10) which often has single quote character ...
0
votes
4answers
26 views
Prevent Subsequent Random Results Repeating In Javascript
On my website I have a button that selects a random quote from a list of quotes and projects the randomly selected quote into a text box. This is done using JavaScript.
Although I have this working, ...
0
votes
1answer
40 views
MySQL Adding Slashes When I Don't Want Them
We are using Yahoo Web Hosting (not my choice) and the MySQL Database is acting weird. When I put in a simple query such as:
update mytable set columnname = "new value" where id = 1;
it returns ...
0
votes
3answers
76 views
Trying to echo JS function in PHP
I'm trying to echo a js function in HTML string inside PHP echo.
And I can't figure it out :
$MY_JS_FUNCTION = '<script type="text/javascript">item + getLastField2()</script>';
...
0
votes
3answers
90 views
Excel macro formula adding quotes around formular causing vlookup to not work
I am trying to write a macro, which adds a formula to a cell. For some reason, the macro is adding quotations around the cell range, which is now causing the cell to return the #name error. Any fix ...
0
votes
1answer
80 views
Quotes in a long multi-variable SQL request in Basic4android
All B2A users.
Again about double quotes in SQL: how to be (replace quotes) in B2A long SQL INSERT\UPDATE request string, if this string is created dinamically, fields names and qty are variables ...
0
votes
2answers
43 views
is there a way of using php pdo quote method without creating a connection?
The title is my question. Why is a connection required to use that method?
I've been using pdo::quote to generate sql statements (I know that you're supposed to use prepared statements but those are a ...
0
votes
0answers
109 views
Stripping BBCode quote tags (and their content) in PHP
I'm trying to prevent BBCode quotes from being sent to the reply box on a phpBB3 message board. So far, I've managed to remove quotes from messages sent to the quick reply box via a custom quickquote ...