Questions tagged [quotation-marks]
271 questions
0
votes
2 answers
Unwanted quotation marks in CSV file
I have a code that looks like this:
with open('Recipe 2.txt', 'w') as fp:
a = csv.writer(fp)
data = [['VER:3;'],
['Recipe 0;'],
['Last[1,1];'+d+';'],
a.writerows(data)
d is defined earlier.
My problem is that…

JonasT
- 1
- 3
0
votes
3 answers
MySQL Quotation Mar
I am super newbe in SQL-mySQL stuff and I want to query these entries that contain a column with a specific value but the value already has quotation marks in it, it literally looks like this, quotation marks are already there:
"Museum Voor Land-en…

Jen
- 161
- 2
- 7
0
votes
1 answer
how to input single quotation mark in a text in matlab
trying to input the symbol ' - single quote inside a text will terminate the text. how to give the ' as input inside a text
a=';
a=';
|
Error: String is not terminated properly.
msg='asdfasdfasdf'asdfasdf';
…

M.G. Gouthamanaath
- 25
- 8
0
votes
1 answer
Update mysql field with new string which contains quote marks
I cant seem to get this right
I'm trying to replace all instances of a string in a column but because their are special characters I think it's causing it to have no effect.
String I'm trying to replace:
[{"name":"file/
String I'd like to have…
0
votes
1 answer
Replacing " with " for XML
My program is a HTML parser and it saves everything into XML file. The problem is when I'm trying open a file and read the text, it gives me for example:"NAME"
when it should be "NAME"
It seems that when I use…

Qbej
- 3
- 2
- 5
0
votes
1 answer
How do I pass arguments to bash with quotation marks
I have a script which calls a C++ application with command line switches set. What I would like to do is pass the app switches as parameters to the script.
options=$1
...
./app $options
The problem occurs when I try to pass an parameter…

Charlestone
- 1,248
- 1
- 13
- 27
0
votes
1 answer
convert quotation marks into HTML codes in large text
I am creating an application in HTML, CSS, Jquery Mobile, that will be having a big text. To get that text, I have to copy it from another resource and in my text editor they look fine. (They are like "This is double quotes",'This is single…

Blaise M.
- 565
- 1
- 8
- 17
0
votes
3 answers
SPSS: Use index variable inside quotation marks
I have several datasets over which i want to run identical commands.
My basic idea is to create a vector with the names of the datasets and loop over it, using the specified name in my GET command:
VECTOR=(9) D = Name1 to Name9.
LOOP #i = 1 to 9.
…

Caspar
- 19
- 8
0
votes
0 answers
Google Fusion Tables: importing csv files containing quotation marks
I am having trouble importing rows from a tab-delimited CSV file into a fusion table database when the file contains fields with quotation marks. I still can't do it even if I change " to \"
The error message I see in the Google Drive interface is…

user1469420
- 121
- 1
- 1
0
votes
1 answer
Quotation marks don't seem to work
I have been working on a piece of code for a webpage and my quotation marks within my php portion do not work.
I got this simple test from w3school and even then it still does not work:
Test:

user2883071
- 960
- 1
- 20
- 50
0
votes
0 answers
escaping issue with quotation while echoing a string
I have a buggy situation that i can't figure out how to solve: i tried to store in the test db some sequential double quotation marks (""""""""). Now, when i print them as value of an input type="text" field, what i get is:

Mariano
- 221
- 1
- 4
- 14
0
votes
2 answers
DOS Batch : dealing with double quotes from XML files
I have written the code below to read XML files (file_1.xml and file_2.xml) and to extract the string between tags and to write it down into a TXT file. The issue is that some strings include double quotation marks and the program then takes these…

wiltomap
- 3,933
- 8
- 37
- 54
0
votes
1 answer
How do I get the proper quotations around the return and end of on click statement?
I've been having some troubles with this javascript code and I am looking for a suggestion. I am programtically adding a row to a table with javascript but I need to add an onclick event for each row. Problem is when the row adds to the page the…

user1984027
- 111
- 1
- 7
0
votes
1 answer
PostgreSQL : what are simple quotation marks for?
How could I remove simple quotation marks that appear in empty cells? See image below
The columns can be either TEXT or CHARACTER VARYING(), these signs are still present. I have other tables with no quotation marks in empty cells... The extract…

wiltomap
- 3,933
- 8
- 37
- 54
0
votes
1 answer
Rails: Is it not possible/necessary to html_escape all email text (in the view)?
can anyone tell me if it is normal and OK for Rails to turn a normal quotation mark (") into & q u o t ; (and not keep the normal quotation mark) when it is html_escape-d in an email view?
I.e.:
h(whatever_text_that_contains_normal_quotation_marks)…

TomDogg
- 3,803
- 5
- 33
- 60